pub enum TsNamespaceBody {
TsModuleBlock(TsModuleBlock),
TsNamespaceDecl(TsNamespaceDecl),
}
Expand description
namespace A.B { }
is a namespace named A
with another TsNamespaceDecl as
its body.
Variants§
TsModuleBlock(TsModuleBlock)
TsNamespaceDecl(TsNamespaceDecl)
Implementations§
source§impl TsNamespaceBody
impl TsNamespaceBody
sourcepub const fn is_ts_module_block(&self) -> bool
pub const fn is_ts_module_block(&self) -> bool
Returns true
if self
is of variant TsModuleBlock
.
sourcepub fn as_ts_module_block(&self) -> Option<&TsModuleBlock>
pub fn as_ts_module_block(&self) -> Option<&TsModuleBlock>
Returns Some
if self
is a reference of variant TsModuleBlock
, and None
otherwise.
sourcepub fn as_mut_ts_module_block(&mut self) -> Option<&mut TsModuleBlock>
pub fn as_mut_ts_module_block(&mut self) -> Option<&mut TsModuleBlock>
Returns Some
if self
is a mutable reference of variant TsModuleBlock
, and None
otherwise.
sourcepub fn expect_ts_module_block(self) -> TsModuleBlockwhere
Self: Debug,
pub fn expect_ts_module_block(self) -> TsModuleBlockwhere
Self: Debug,
Unwraps the value, yielding the content of TsModuleBlock
.
§Panics
Panics if the value is not TsModuleBlock
, with a panic message including the content of self
.
sourcepub fn ts_module_block(self) -> Option<TsModuleBlock>
pub fn ts_module_block(self) -> Option<TsModuleBlock>
Returns Some
if self
is of variant TsModuleBlock
, and None
otherwise.
sourcepub const fn is_ts_namespace_decl(&self) -> bool
pub const fn is_ts_namespace_decl(&self) -> bool
Returns true
if self
is of variant TsNamespaceDecl
.
sourcepub fn as_ts_namespace_decl(&self) -> Option<&TsNamespaceDecl>
pub fn as_ts_namespace_decl(&self) -> Option<&TsNamespaceDecl>
Returns Some
if self
is a reference of variant TsNamespaceDecl
, and None
otherwise.
sourcepub fn as_mut_ts_namespace_decl(&mut self) -> Option<&mut TsNamespaceDecl>
pub fn as_mut_ts_namespace_decl(&mut self) -> Option<&mut TsNamespaceDecl>
Returns Some
if self
is a mutable reference of variant TsNamespaceDecl
, and None
otherwise.
sourcepub fn expect_ts_namespace_decl(self) -> TsNamespaceDeclwhere
Self: Debug,
pub fn expect_ts_namespace_decl(self) -> TsNamespaceDeclwhere
Self: Debug,
Unwraps the value, yielding the content of TsNamespaceDecl
.
§Panics
Panics if the value is not TsNamespaceDecl
, with a panic message including the content of self
.
sourcepub fn ts_namespace_decl(self) -> Option<TsNamespaceDecl>
pub fn ts_namespace_decl(self) -> Option<TsNamespaceDecl>
Returns Some
if self
is of variant TsNamespaceDecl
, and None
otherwise.
Trait Implementations§
source§impl Clone for TsNamespaceBody
impl Clone for TsNamespaceBody
source§fn clone(&self) -> TsNamespaceBody
fn clone(&self) -> TsNamespaceBody
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TsNamespaceBody
impl Debug for TsNamespaceBody
source§impl<'de> Deserialize<'de> for TsNamespaceBody
impl<'de> Deserialize<'de> for TsNamespaceBody
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl EqIgnoreSpan for TsNamespaceBody
impl EqIgnoreSpan for TsNamespaceBody
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<TsModuleBlock> for TsNamespaceBody
impl From<TsModuleBlock> for TsNamespaceBody
source§fn from(v: TsModuleBlock) -> Self
fn from(v: TsModuleBlock) -> Self
source§impl From<TsNamespaceDecl> for TsNamespaceBody
impl From<TsNamespaceDecl> for TsNamespaceBody
source§fn from(v: TsNamespaceDecl) -> Self
fn from(v: TsNamespaceDecl) -> Self
source§impl Hash for TsNamespaceBody
impl Hash for TsNamespaceBody
source§impl PartialEq for TsNamespaceBody
impl PartialEq for TsNamespaceBody
source§impl Serialize for TsNamespaceBody
impl Serialize for TsNamespaceBody
source§impl Spanned for TsNamespaceBody
impl Spanned for TsNamespaceBody
impl Eq for TsNamespaceBody
impl StructuralPartialEq for TsNamespaceBody
Auto Trait Implementations§
impl Freeze for TsNamespaceBody
impl RefUnwindSafe for TsNamespaceBody
impl Send for TsNamespaceBody
impl Sync for TsNamespaceBody
impl Unpin for TsNamespaceBody
impl UnwindSafe for TsNamespaceBody
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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