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