pub enum CaseKeyword {
Case(Box<Keyword>),
Casez(Box<Keyword>),
Casex(Box<Keyword>),
}
Variants§
Trait Implementations§
Source§impl Clone for CaseKeyword
impl Clone for CaseKeyword
Source§fn clone(&self) -> CaseKeyword
fn clone(&self) -> CaseKeyword
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 CaseKeyword
impl Debug for CaseKeyword
Source§impl<'a> From<&'a CaseKeyword> for RefNode<'a>
impl<'a> From<&'a CaseKeyword> for RefNode<'a>
Source§fn from(x: &'a CaseKeyword) -> RefNode<'a>
fn from(x: &'a CaseKeyword) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a CaseKeyword> for RefNodes<'a>
impl<'a> From<&'a CaseKeyword> for RefNodes<'a>
Source§fn from(x: &'a CaseKeyword) -> RefNodes<'a>
fn from(x: &'a CaseKeyword) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<CaseKeyword> for AnyNode
impl From<CaseKeyword> for AnyNode
Source§fn from(x: CaseKeyword) -> AnyNode
fn from(x: CaseKeyword) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a CaseKeyword
impl<'a> IntoIterator for &'a CaseKeyword
Source§impl PartialEq for CaseKeyword
impl PartialEq for CaseKeyword
Source§impl<'a> TryFrom<&'a CaseKeyword> for Locate
impl<'a> TryFrom<&'a CaseKeyword> for Locate
Source§impl TryFrom<AnyNode> for CaseKeyword
impl TryFrom<AnyNode> for CaseKeyword
Source§impl TryFrom<CaseKeyword> for Locate
impl TryFrom<CaseKeyword> for Locate
impl StructuralPartialEq for CaseKeyword
Auto Trait Implementations§
impl Freeze for CaseKeyword
impl RefUnwindSafe for CaseKeyword
impl Send for CaseKeyword
impl Sync for CaseKeyword
impl Unpin for CaseKeyword
impl UnwindSafe for CaseKeyword
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