about summary refs log tree commit diff stats
path: root/crates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-04 20:26:55 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-04 20:26:55 +0100
commit794546168238eca6300a9088204ad59ef917395e (patch)
tree13f53f3477e602bb617c208720914619d9e0018a /crates
parentfix(yt/download): Don't trust the `cache_path` attribute (diff)
downloadyt-794546168238eca6300a9088204ad59ef917395e.tar.gz
yt-794546168238eca6300a9088204ad59ef917395e.zip
fix(yt/download): Only print changed bytes sizes, on changed string
2_000_000_000 and 2_000_000_001 cache sizes are not the same, but will
both print out "1.86 GiB". Obviously, notifying the user about this
change is rather counter-productive.
Diffstat (limited to 'crates')
-rw-r--r--crates/bytes/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/bytes/src/lib.rs b/crates/bytes/src/lib.rs
index 6e3f73c..2a9248d 100644
--- a/crates/bytes/src/lib.rs
+++ b/crates/bytes/src/lib.rs
@@ -34,7 +34,7 @@ const TB: u64 = 1000 * GB;
 pub mod error;
 pub mod serde;
 
-#[derive(Clone, Copy, Debug)]
+#[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Ord, Eq)]
 pub struct Bytes(u64);
 
 impl Bytes {