pub enum BooleanView {
True(TrueHandle),
False(FalseHandle),
}Variants§
True(TrueHandle)
False(FalseHandle)
Trait Implementations§
Source§impl Clone for BooleanView
impl Clone for BooleanView
Source§fn clone(&self) -> BooleanView
fn clone(&self) -> BooleanView
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 BooleanView
impl Debug for BooleanView
Source§impl PartialEq for BooleanView
impl PartialEq for BooleanView
impl Copy for BooleanView
impl Eq for BooleanView
impl StructuralPartialEq for BooleanView
Auto Trait Implementations§
impl Freeze for BooleanView
impl RefUnwindSafe for BooleanView
impl Send for BooleanView
impl Sync for BooleanView
impl Unpin for BooleanView
impl UnwindSafe for BooleanView
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