pub enum IndexSignatureType<'tree> {
AddingTypeAnnotation(Box<AddingTypeAnnotation<'tree>>),
OmittingTypeAnnotation(Box<OmittingTypeAnnotation<'tree>>),
OptingTypeAnnotation(Box<OptingTypeAnnotation<'tree>>),
TypeAnnotation(Box<TypeAnnotation<'tree>>),
}Variants§
AddingTypeAnnotation(Box<AddingTypeAnnotation<'tree>>)
OmittingTypeAnnotation(Box<OmittingTypeAnnotation<'tree>>)
OptingTypeAnnotation(Box<OptingTypeAnnotation<'tree>>)
TypeAnnotation(Box<TypeAnnotation<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for IndexSignatureType<'tree>
impl<'tree> Clone for IndexSignatureType<'tree>
Source§fn clone(&self) -> IndexSignatureType<'tree>
fn clone(&self) -> IndexSignatureType<'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 IndexSignatureType<'tree>
impl<'tree> Debug for IndexSignatureType<'tree>
impl<'tree> Eq for IndexSignatureType<'tree>
Source§impl<'tree> FromNode<'tree> for IndexSignatureType<'tree>
impl<'tree> FromNode<'tree> for IndexSignatureType<'tree>
Source§impl<'tree> PartialEq for IndexSignatureType<'tree>
impl<'tree> PartialEq for IndexSignatureType<'tree>
Source§impl Spanned for IndexSignatureType<'_>
impl Spanned for IndexSignatureType<'_>
impl<'tree> StructuralPartialEq for IndexSignatureType<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for IndexSignatureType<'tree>
impl<'tree> RefUnwindSafe for IndexSignatureType<'tree>
impl<'tree> Send for IndexSignatureType<'tree>
impl<'tree> Sync for IndexSignatureType<'tree>
impl<'tree> Unpin for IndexSignatureType<'tree>
impl<'tree> UnsafeUnpin for IndexSignatureType<'tree>
impl<'tree> UnwindSafe for IndexSignatureType<'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