pub enum UserInputBound {
Inclusive(String),
Exclusive(String),
Unbounded,
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for UserInputBound
impl Clone for UserInputBound
source§fn clone(&self) -> UserInputBound
fn clone(&self) -> UserInputBound
Returns a copy 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 UserInputBound
impl Debug for UserInputBound
source§impl PartialEq for UserInputBound
impl PartialEq for UserInputBound
source§fn eq(&self, other: &UserInputBound) -> bool
fn eq(&self, other: &UserInputBound) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserInputBound
Auto Trait Implementations§
impl Freeze for UserInputBound
impl RefUnwindSafe for UserInputBound
impl Send for UserInputBound
impl Sync for UserInputBound
impl Unpin for UserInputBound
impl UnwindSafe for UserInputBound
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