pub struct PropertySignature<'tree> {
pub span: Span,
pub name: PropertySignatureName<'tree>,
pub type: Option<TypeAnnotation<'tree>>,
pub children: Vec<PropertySignatureChildren<'tree>>,
}Fields§
§span: Span§name: PropertySignatureName<'tree>§type: Option<TypeAnnotation<'tree>>§children: Vec<PropertySignatureChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for PropertySignature<'tree>
impl<'tree> Clone for PropertySignature<'tree>
Source§fn clone(&self) -> PropertySignature<'tree>
fn clone(&self) -> PropertySignature<'tree>
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<'tree> Debug for PropertySignature<'tree>
impl<'tree> Debug for PropertySignature<'tree>
impl<'tree> Eq for PropertySignature<'tree>
Source§impl<'tree> FromNode<'tree> for PropertySignature<'tree>
impl<'tree> FromNode<'tree> for PropertySignature<'tree>
Source§impl<'tree> PartialEq for PropertySignature<'tree>
impl<'tree> PartialEq for PropertySignature<'tree>
Source§impl Spanned for PropertySignature<'_>
impl Spanned for PropertySignature<'_>
impl<'tree> StructuralPartialEq for PropertySignature<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PropertySignature<'tree>
impl<'tree> RefUnwindSafe for PropertySignature<'tree>
impl<'tree> Send for PropertySignature<'tree>
impl<'tree> Sync for PropertySignature<'tree>
impl<'tree> Unpin for PropertySignature<'tree>
impl<'tree> UnsafeUnpin for PropertySignature<'tree>
impl<'tree> UnwindSafe for PropertySignature<'tree>
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