pub enum BooleanKeyword {
True(Ident),
False(Ident),
}Variants§
Trait Implementations§
Source§impl Clone for BooleanKeyword
impl Clone for BooleanKeyword
Source§fn clone(&self) -> BooleanKeyword
fn clone(&self) -> BooleanKeyword
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 BooleanKeyword
impl Debug for BooleanKeyword
Source§impl Hash for BooleanKeyword
impl Hash for BooleanKeyword
Source§impl Ord for BooleanKeyword
impl Ord for BooleanKeyword
Source§fn cmp(&self, other: &BooleanKeyword) -> Ordering
fn cmp(&self, other: &BooleanKeyword) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for BooleanKeyword
impl<'a> Parse<'a> for BooleanKeyword
Source§impl PartialEq for BooleanKeyword
impl PartialEq for BooleanKeyword
Source§impl PartialOrd for BooleanKeyword
impl PartialOrd for BooleanKeyword
Source§impl<'a> Peek<'a> for BooleanKeyword
impl<'a> Peek<'a> for BooleanKeyword
Source§impl ToCursors for BooleanKeyword
impl ToCursors for BooleanKeyword
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for BooleanKeyword
impl Eq for BooleanKeyword
impl StructuralPartialEq for BooleanKeyword
Auto Trait Implementations§
impl Freeze for BooleanKeyword
impl RefUnwindSafe for BooleanKeyword
impl Send for BooleanKeyword
impl Sync for BooleanKeyword
impl Unpin for BooleanKeyword
impl UnwindSafe for BooleanKeyword
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