Enum ezno_parser::expressions::InExpressionLHS
source · pub enum InExpressionLHS {
PrivateProperty(String),
Expression(Box<Expression>),
}
Variants§
PrivateProperty(String)
Expression(Box<Expression>)
Trait Implementations§
source§impl Clone for InExpressionLHS
impl Clone for InExpressionLHS
source§fn clone(&self) -> InExpressionLHS
fn clone(&self) -> InExpressionLHS
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 InExpressionLHS
impl Debug for InExpressionLHS
source§impl PartialEq for InExpressionLHS
impl PartialEq for InExpressionLHS
source§impl SelfRustTokenize for InExpressionLHS
impl SelfRustTokenize for InExpressionLHS
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 InExpressionLHS
impl Serialize for InExpressionLHS
source§impl Visitable for InExpressionLHS
impl Visitable for InExpressionLHS
fn visit<TData>( &self, visitors: &mut (impl VisitorReceiver<TData> + ?Sized), data: &mut TData, settings: &VisitSettings, chain: &mut Annex<'_, Chain> )
fn visit_mut<TData>( &mut self, visitors: &mut (impl VisitorMutReceiver<TData> + ?Sized), data: &mut TData, settings: &VisitSettings, chain: &mut Annex<'_, Chain> )
Auto Trait Implementations§
impl RefUnwindSafe for InExpressionLHS
impl Send for InExpressionLHS
impl Sync for InExpressionLHS
impl Unpin for InExpressionLHS
impl UnwindSafe for InExpressionLHS
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