Enum Decl

Source
#[repr(u32)]
pub enum Decl { Class(ClassDecl), Fn(FnDecl), Var(Box<VarDecl>), Using(Box<UsingDecl>), TsInterface(Box<TsInterfaceDecl>), TsTypeAlias(Box<TsTypeAliasDecl>), TsEnum(Box<TsEnumDecl>), TsModule(Box<TsModuleDecl>), }

Variants§

§

Class(ClassDecl)

§

Fn(FnDecl)

§

Var(Box<VarDecl>)

§

Using(Box<UsingDecl>)

§

TsInterface(Box<TsInterfaceDecl>)

§

TsTypeAlias(Box<TsTypeAliasDecl>)

§

TsEnum(Box<TsEnumDecl>)

§

TsModule(Box<TsModuleDecl>)

Implementations§

Source§

impl Decl

Source

pub const fn is_class(&self) -> bool

Returns true if self is of variant Class.

Source

pub fn as_class(&self) -> Option<&ClassDecl>

Returns Some if self is a reference of variant Class, and None otherwise.

Source

pub fn as_mut_class(&mut self) -> Option<&mut ClassDecl>

Returns Some if self is a mutable reference of variant Class, and None otherwise.

Source

pub fn expect_class(self) -> ClassDecl
where Self: Debug,

Unwraps the value, yielding the content of Class.

§Panics

Panics if the value is not Class, with a panic message including the content of self.

Source

pub fn class(self) -> Option<ClassDecl>

Returns Some if self is of variant Class, and None otherwise.

Source

pub const fn is_fn_decl(&self) -> bool

Returns true if self is of variant Fn.

Source

pub fn as_fn_decl(&self) -> Option<&FnDecl>

Returns Some if self is a reference of variant Fn, and None otherwise.

Source

pub fn as_mut_fn_decl(&mut self) -> Option<&mut FnDecl>

Returns Some if self is a mutable reference of variant Fn, and None otherwise.

Source

pub fn expect_fn_decl(self) -> FnDecl
where Self: Debug,

Unwraps the value, yielding the content of Fn.

§Panics

Panics if the value is not Fn, with a panic message including the content of self.

Source

pub fn fn_decl(self) -> Option<FnDecl>

Returns Some if self is of variant Fn, and None otherwise.

Source

pub const fn is_var(&self) -> bool

Returns true if self is of variant Var.

Source

pub fn as_var(&self) -> Option<&Box<VarDecl>>

Returns Some if self is a reference of variant Var, and None otherwise.

Source

pub fn as_mut_var(&mut self) -> Option<&mut Box<VarDecl>>

Returns Some if self is a mutable reference of variant Var, and None otherwise.

Source

pub fn expect_var(self) -> Box<VarDecl>
where Self: Debug,

Unwraps the value, yielding the content of Var.

§Panics

Panics if the value is not Var, with a panic message including the content of self.

Source

pub fn var(self) -> Option<Box<VarDecl>>

Returns Some if self is of variant Var, and None otherwise.

Source

pub const fn is_using(&self) -> bool

Returns true if self is of variant Using.

Source

pub fn as_using(&self) -> Option<&Box<UsingDecl>>

Returns Some if self is a reference of variant Using, and None otherwise.

Source

pub fn as_mut_using(&mut self) -> Option<&mut Box<UsingDecl>>

Returns Some if self is a mutable reference of variant Using, and None otherwise.

Source

pub fn expect_using(self) -> Box<UsingDecl>
where Self: Debug,

Unwraps the value, yielding the content of Using.

§Panics

Panics if the value is not Using, with a panic message including the content of self.

Source

pub fn using(self) -> Option<Box<UsingDecl>>

Returns Some if self is of variant Using, and None otherwise.

Source

pub const fn is_ts_interface(&self) -> bool

Returns true if self is of variant TsInterface.

Source

pub fn as_ts_interface(&self) -> Option<&Box<TsInterfaceDecl>>

Returns Some if self is a reference of variant TsInterface, and None otherwise.

Source

pub fn as_mut_ts_interface(&mut self) -> Option<&mut Box<TsInterfaceDecl>>

Returns Some if self is a mutable reference of variant TsInterface, and None otherwise.

Source

pub fn expect_ts_interface(self) -> Box<TsInterfaceDecl>
where Self: Debug,

Unwraps the value, yielding the content of TsInterface.

§Panics

Panics if the value is not TsInterface, with a panic message including the content of self.

Source

pub fn ts_interface(self) -> Option<Box<TsInterfaceDecl>>

Returns Some if self is of variant TsInterface, and None otherwise.

Source

pub const fn is_ts_type_alias(&self) -> bool

Returns true if self is of variant TsTypeAlias.

Source

pub fn as_ts_type_alias(&self) -> Option<&Box<TsTypeAliasDecl>>

Returns Some if self is a reference of variant TsTypeAlias, and None otherwise.

Source

pub fn as_mut_ts_type_alias(&mut self) -> Option<&mut Box<TsTypeAliasDecl>>

Returns Some if self is a mutable reference of variant TsTypeAlias, and None otherwise.

Source

pub fn expect_ts_type_alias(self) -> Box<TsTypeAliasDecl>
where Self: Debug,

Unwraps the value, yielding the content of TsTypeAlias.

§Panics

Panics if the value is not TsTypeAlias, with a panic message including the content of self.

Source

pub fn ts_type_alias(self) -> Option<Box<TsTypeAliasDecl>>

Returns Some if self is of variant TsTypeAlias, and None otherwise.

Source

pub const fn is_ts_enum(&self) -> bool

Returns true if self is of variant TsEnum.

Source

pub fn as_ts_enum(&self) -> Option<&Box<TsEnumDecl>>

Returns Some if self is a reference of variant TsEnum, and None otherwise.

Source

pub fn as_mut_ts_enum(&mut self) -> Option<&mut Box<TsEnumDecl>>

Returns Some if self is a mutable reference of variant TsEnum, and None otherwise.

Source

pub fn expect_ts_enum(self) -> Box<TsEnumDecl>
where Self: Debug,

Unwraps the value, yielding the content of TsEnum.

§Panics

Panics if the value is not TsEnum, with a panic message including the content of self.

Source

pub fn ts_enum(self) -> Option<Box<TsEnumDecl>>

Returns Some if self is of variant TsEnum, and None otherwise.

Source

pub const fn is_ts_module(&self) -> bool

Returns true if self is of variant TsModule.

Source

pub fn as_ts_module(&self) -> Option<&Box<TsModuleDecl>>

Returns Some if self is a reference of variant TsModule, and None otherwise.

Source

pub fn as_mut_ts_module(&mut self) -> Option<&mut Box<TsModuleDecl>>

Returns Some if self is a mutable reference of variant TsModule, and None otherwise.

Source

pub fn expect_ts_module(self) -> Box<TsModuleDecl>
where Self: Debug,

Unwraps the value, yielding the content of TsModule.

§Panics

Panics if the value is not TsModule, with a panic message including the content of self.

Source

pub fn ts_module(self) -> Option<Box<TsModuleDecl>>

Returns Some if self is of variant TsModule, and None otherwise.

Trait Implementations§

Source§

impl<'arbitrary> Arbitrary<'arbitrary> for Decl

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl Archive for Decl

Source§

type Archived = ArchivedDecl

The archived representation of this type. Read more
Source§

type Resolver = DeclResolver

The resolver for this type. It must contain all the additional information from serializing needed to make the archived type from the normal type.
Source§

fn resolve(&self, resolver: Self::Resolver, out: Place<Self::Archived>)

Creates the archived version of this value at the given position and writes it to the given output. Read more
Source§

const COPY_OPTIMIZATION: CopyOptimization<Self> = _

An optimization flag that allows the bytes of this type to be copied directly to a writer instead of calling serialize. Read more
Source§

impl Clone for Decl

Source§

fn clone(&self) -> Decl

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Decl

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Decl

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<__D: Fallible + ?Sized> Deserialize<Decl, __D> for Archived<Decl>
where __D::Error: Source,

Source§

fn deserialize( &self, deserializer: &mut __D, ) -> Result<Decl, <__D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl EqIgnoreSpan for Decl

Source§

fn eq_ignore_span(&self, other: &Self) -> bool

Source§

impl From<Box<TsEnumDecl>> for Decl

Source§

fn from(v: Box<TsEnumDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsInterfaceDecl>> for Decl

Source§

fn from(v: Box<TsInterfaceDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsModuleDecl>> for Decl

Source§

fn from(v: Box<TsModuleDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<TsTypeAliasDecl>> for Decl

Source§

fn from(v: Box<TsTypeAliasDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<UsingDecl>> for Decl

Source§

fn from(v: Box<UsingDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<Box<VarDecl>> for Decl

Source§

fn from(v: Box<VarDecl>) -> Self

Converts to this type from the input type.
Source§

impl From<ClassDecl> for Decl

Source§

fn from(v: ClassDecl) -> Self

Converts to this type from the input type.
Source§

impl From<Decl> for Box<Stmt>

Source§

fn from(src: Decl) -> Box<Stmt>

Converts to this type from the input type.
Source§

impl From<Decl> for ModuleItem

Source§

fn from(src: Decl) -> ModuleItem

Converts to this type from the input type.
Source§

impl From<Decl> for Stmt

Source§

fn from(v: Decl) -> Self

Converts to this type from the input type.
Source§

impl From<FnDecl> for Decl

Source§

fn from(v: FnDecl) -> Self

Converts to this type from the input type.
Source§

impl From<TsEnumDecl> for Decl

Source§

fn from(src: TsEnumDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsInterfaceDecl> for Decl

Source§

fn from(src: TsInterfaceDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsModuleDecl> for Decl

Source§

fn from(src: TsModuleDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<TsTypeAliasDecl> for Decl

Source§

fn from(src: TsTypeAliasDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<UsingDecl> for Decl

Source§

fn from(src: UsingDecl) -> Decl

Converts to this type from the input type.
Source§

impl From<VarDecl> for Decl

Source§

fn from(src: VarDecl) -> Decl

Converts to this type from the input type.
Source§

impl Hash for Decl

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Decl

Source§

fn eq(&self, other: &Decl) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<__S> Serialize<__S> for Decl
where __S: Writer + Allocator + Fallible + ?Sized, __S::Error: Source,

Source§

fn serialize( &self, serializer: &mut __S, ) -> Result<<Self as Archive>::Resolver, <__S as Fallible>::Error>

Writes the dependencies for the object and returns a resolver that can create the archived type.
Source§

impl Serialize for Decl

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ShrinkToFit for Decl

Source§

fn shrink_to_fit(&mut self)

Source§

impl Spanned for Decl

Source§

fn span(&self) -> Span

Get span of self.
Source§

fn span_lo(&self) -> BytePos

Source§

fn span_hi(&self) -> BytePos

Source§

impl Take for Decl

Source§

fn dummy() -> Self

Create a dummy value of this type.
Source§

fn take(&mut self) -> Self

Source§

fn map_with_mut<F>(&mut self, op: F)
where F: FnOnce(Self) -> Self,

Mutate self using op, which accepts owned data.
Source§

impl Eq for Decl

Source§

impl StructuralPartialEq for Decl

Auto Trait Implementations§

§

impl Freeze for Decl

§

impl RefUnwindSafe for Decl

§

impl Send for Decl

§

impl Sync for Decl

§

impl Unpin for Decl

§

impl UnwindSafe for Decl

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Source§

impl<T> ArchiveUnsized for T
where T: Archive,

Source§

type Archived = <T as Archive>::Archived

The archived counterpart of this type. Unlike Archive, it may be unsized. Read more
Source§

fn archived_metadata( &self, ) -> <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata

Creates the archived version of the metadata for this value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
where T: SharedNiching<N1, N2>, N1: Niching<T>, N2: Niching<T>,

Source§

unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool

Returns whether the given value has been niched. Read more
Source§

fn resolve_niched(out: Place<NichedOption<T, N1>>)

Writes data to out indicating that a T is niched.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
Source§

impl<T, S> SerializeUnsized<S> for T
where T: Serialize<S>, S: Fallible + Writer + ?Sized,

Source§

fn serialize_unsized( &self, serializer: &mut S, ) -> Result<usize, <S as Fallible>::Error>

Writes the object and returns the position of the archived type.
Source§

impl<T> SpanExt for T
where T: Spanned,

Source§

fn is_synthesized(&self) -> bool

Source§

fn starts_on_new_line(&self, format: ListFormat) -> bool

Source§

fn comment_range(&self) -> Span

Gets a custom text range to use when emitting comments.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> Send for T
where T: ?Sized,

Source§

impl<T> Sync for T
where T: ?Sized,