pub struct AutoAccessor {
pub modifiers: DeclarationModifiers,
pub name: PropertyName,
pub type_annotation: Option<TypeAnnotationNode>,
pub initializer: Option<Box<Expr>>,
}Fields§
§modifiers: DeclarationModifiers§name: PropertyName§type_annotation: Option<TypeAnnotationNode>§initializer: Option<Box<Expr>>Trait Implementations§
Source§impl Clone for AutoAccessor
impl Clone for AutoAccessor
Source§fn clone(&self) -> AutoAccessor
fn clone(&self) -> AutoAccessor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AutoAccessor
impl Debug for AutoAccessor
impl Eq for AutoAccessor
Source§impl PartialEq for AutoAccessor
impl PartialEq for AutoAccessor
impl StructuralPartialEq for AutoAccessor
Auto Trait Implementations§
impl Freeze for AutoAccessor
impl RefUnwindSafe for AutoAccessor
impl Send for AutoAccessor
impl Sync for AutoAccessor
impl Unpin for AutoAccessor
impl UnsafeUnpin for AutoAccessor
impl UnwindSafe for AutoAccessor
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