You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0599]: no method named `as_usize` found for type `bytesize::ByteSize` in the current scope
--> src/main.rs:8:27
|
8 | print!("{} bytes", plus.as_usize());
| ^^^^^^^^
error[E0369]: binary operation `-` cannot be applied to type `bytesize::ByteSize`
--> src/main.rs:10:15
|
10 | let minus = ByteSize::tb(100) - ByteSize::gb(4);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: an implementation of `std::ops::Sub` might be missing for `bytesize::ByteSize`
The text was updated successfully, but these errors were encountered:
#11 removed the implementation of
Sub
forByteSize
as well as theas_usize
method. The example in the documentation tries to use both:https://github.com/hyunsik/bytesize/blob/9d8e13f05fe2fb2596a5534e86ef135af5bae6a3/src/lib.rs#L18
Trying to run this example results in:
The text was updated successfully, but these errors were encountered: