enum may_match_t {
MATCH_NO,
MATCH_YES,
MATCH_MAYBE,
}
Variants§
Trait Implementations§
Source§impl Clone for may_match_t
impl Clone for may_match_t
Source§fn clone(&self) -> may_match_t
fn clone(&self) -> may_match_t
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 PartialEq for may_match_t
impl PartialEq for may_match_t
impl Copy for may_match_t
impl Eq for may_match_t
impl StructuralPartialEq for may_match_t
Auto Trait Implementations§
impl Freeze for may_match_t
impl RefUnwindSafe for may_match_t
impl Send for may_match_t
impl Sync for may_match_t
impl Unpin for may_match_t
impl UnwindSafe for may_match_t
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