Enum ezno_parser::types::declares::DeclareVariableKeyword
source · pub enum DeclareVariableKeyword {
Const(Keyword<Const>),
Let(Keyword<Let>),
Var(Keyword<Var>),
}Variants§
Trait Implementations§
source§impl Clone for DeclareVariableKeyword
impl Clone for DeclareVariableKeyword
source§fn clone(&self) -> DeclareVariableKeyword
fn clone(&self) -> DeclareVariableKeyword
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 DeclareVariableKeyword
impl Debug for DeclareVariableKeyword
source§impl PartialEq for DeclareVariableKeyword
impl PartialEq for DeclareVariableKeyword
source§fn eq(&self, other: &DeclareVariableKeyword) -> bool
fn eq(&self, other: &DeclareVariableKeyword) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl SelfRustTokenize for DeclareVariableKeyword
impl SelfRustTokenize for DeclareVariableKeyword
fn append_to_token_stream(&self, token_stream: &mut TokenStream)
source§fn to_tokens(&self) -> TokenStream
fn to_tokens(&self) -> TokenStream
Returns the tokens used to construct self
source§impl Serialize for DeclareVariableKeyword
impl Serialize for DeclareVariableKeyword
impl Eq for DeclareVariableKeyword
impl StructuralEq for DeclareVariableKeyword
impl StructuralPartialEq for DeclareVariableKeyword
Auto Trait Implementations§
impl RefUnwindSafe for DeclareVariableKeyword
impl Send for DeclareVariableKeyword
impl Sync for DeclareVariableKeyword
impl Unpin for DeclareVariableKeyword
impl UnwindSafe for DeclareVariableKeyword
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