pub enum SizeCmp {
Gt(u64),
Lt(u64),
Ge(u64),
}Expand description
A parsed --size predicate, in bytes.
Variants§
Gt(u64)
Strictly larger than N bytes (+N).
Lt(u64)
Strictly smaller than N bytes (-N).
Ge(u64)
At least N bytes (bare N).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SizeCmp
impl RefUnwindSafe for SizeCmp
impl Send for SizeCmp
impl Sync for SizeCmp
impl Unpin for SizeCmp
impl UnsafeUnpin for SizeCmp
impl UnwindSafe for SizeCmp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more