pub enum PropertyReference {
Standard {
property: String,
is_private: bool,
},
Marker(Marker<PropertyReference>),
}
Variants§
Trait Implementations§
Source§impl Clone for PropertyReference
impl Clone for PropertyReference
Source§fn clone(&self) -> PropertyReference
fn clone(&self) -> PropertyReference
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 PropertyReference
impl Debug for PropertyReference
Source§impl<'a> IntoAST<PropertyReference> for &'a str
impl<'a> IntoAST<PropertyReference> for &'a str
fn into_ast(self) -> PropertyReference
Source§impl PartialEq for PropertyReference
impl PartialEq for PropertyReference
Source§impl SelfRustTokenize for PropertyReference
impl SelfRustTokenize for PropertyReference
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 PropertyReference
impl Serialize for PropertyReference
Source§impl Visitable for PropertyReference
impl Visitable for PropertyReference
fn visit<TData>( &self, _visitors: &mut (impl VisitorReceiver<TData> + ?Sized), _data: &mut TData, _options: &VisitOptions, _chain: &mut Annex<'_, Chain>, )
fn visit_mut<TData>( &mut self, _visitors: &mut (impl VisitorMutReceiver<TData> + ?Sized), _data: &mut TData, _options: &VisitOptions, _chain: &mut Annex<'_, Chain>, )
impl StructuralPartialEq for PropertyReference
Auto Trait Implementations§
impl Freeze for PropertyReference
impl RefUnwindSafe for PropertyReference
impl Send for PropertyReference
impl Sync for PropertyReference
impl Unpin for PropertyReference
impl UnwindSafe for PropertyReference
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