pub enum LengthBoundary {
Min,
Max,
Integer(u64),
}Variants§
Trait Implementations§
Source§impl Clone for LengthBoundary
impl Clone for LengthBoundary
Source§fn clone(&self) -> LengthBoundary
fn clone(&self) -> LengthBoundary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LengthBoundary
impl Debug for LengthBoundary
Source§impl FromStr for LengthBoundary
impl FromStr for LengthBoundary
Source§impl PartialEq for LengthBoundary
impl PartialEq for LengthBoundary
impl Copy for LengthBoundary
impl StructuralPartialEq for LengthBoundary
Auto Trait Implementations§
impl Freeze for LengthBoundary
impl RefUnwindSafe for LengthBoundary
impl Send for LengthBoundary
impl Sync for LengthBoundary
impl Unpin for LengthBoundary
impl UnwindSafe for LengthBoundary
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