pub enum TsLit {
Number(Number),
Str(Str),
Bool(Bool),
BigInt(BigInt),
Tpl(TsTplLitType),
}
Variants§
Implementations§
source§impl TsLit
impl TsLit
sourcepub fn as_number(&self) -> Option<&Number>
pub fn as_number(&self) -> Option<&Number>
Returns Some
if self
is a reference of variant Number
, and None
otherwise.
sourcepub fn as_mut_number(&mut self) -> Option<&mut Number>
pub fn as_mut_number(&mut self) -> Option<&mut Number>
Returns Some
if self
is a mutable reference of variant Number
, and None
otherwise.
sourcepub fn expect_number(self) -> Numberwhere
Self: Debug,
pub fn expect_number(self) -> Numberwhere
Self: Debug,
sourcepub fn number(self) -> Option<Number>
pub fn number(self) -> Option<Number>
Returns Some
if self
is of variant Number
, and None
otherwise.
sourcepub fn as_str(&self) -> Option<&Str>
pub fn as_str(&self) -> Option<&Str>
Returns Some
if self
is a reference of variant Str
, and None
otherwise.
sourcepub fn as_mut_str(&mut self) -> Option<&mut Str>
pub fn as_mut_str(&mut self) -> Option<&mut Str>
Returns Some
if self
is a mutable reference of variant Str
, and None
otherwise.
sourcepub fn expect_str(self) -> Strwhere
Self: Debug,
pub fn expect_str(self) -> Strwhere
Self: Debug,
sourcepub fn as_bool(&self) -> Option<&Bool>
pub fn as_bool(&self) -> Option<&Bool>
Returns Some
if self
is a reference of variant Bool
, and None
otherwise.
sourcepub fn as_mut_bool(&mut self) -> Option<&mut Bool>
pub fn as_mut_bool(&mut self) -> Option<&mut Bool>
Returns Some
if self
is a mutable reference of variant Bool
, and None
otherwise.
sourcepub fn expect_bool(self) -> Boolwhere
Self: Debug,
pub fn expect_bool(self) -> Boolwhere
Self: Debug,
sourcepub const fn is_big_int(&self) -> bool
pub const fn is_big_int(&self) -> bool
Returns true
if self
is of variant BigInt
.
sourcepub fn as_big_int(&self) -> Option<&BigInt>
pub fn as_big_int(&self) -> Option<&BigInt>
Returns Some
if self
is a reference of variant BigInt
, and None
otherwise.
sourcepub fn as_mut_big_int(&mut self) -> Option<&mut BigInt>
pub fn as_mut_big_int(&mut self) -> Option<&mut BigInt>
Returns Some
if self
is a mutable reference of variant BigInt
, and None
otherwise.
sourcepub fn expect_big_int(self) -> BigIntwhere
Self: Debug,
pub fn expect_big_int(self) -> BigIntwhere
Self: Debug,
sourcepub fn big_int(self) -> Option<BigInt>
pub fn big_int(self) -> Option<BigInt>
Returns Some
if self
is of variant BigInt
, and None
otherwise.
sourcepub fn as_tpl(&self) -> Option<&TsTplLitType>
pub fn as_tpl(&self) -> Option<&TsTplLitType>
Returns Some
if self
is a reference of variant Tpl
, and None
otherwise.
sourcepub fn as_mut_tpl(&mut self) -> Option<&mut TsTplLitType>
pub fn as_mut_tpl(&mut self) -> Option<&mut TsTplLitType>
Returns Some
if self
is a mutable reference of variant Tpl
, and None
otherwise.
sourcepub fn expect_tpl(self) -> TsTplLitTypewhere
Self: Debug,
pub fn expect_tpl(self) -> TsTplLitTypewhere
Self: Debug,
sourcepub fn tpl(self) -> Option<TsTplLitType>
pub fn tpl(self) -> Option<TsTplLitType>
Returns Some
if self
is of variant Tpl
, and None
otherwise.
Trait Implementations§
source§impl<'de> Deserialize<'de> for TsLit
impl<'de> Deserialize<'de> for TsLit
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 TsLit
impl EqIgnoreSpan for TsLit
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<TsTplLitType> for TsLit
impl From<TsTplLitType> for TsLit
source§fn from(v: TsTplLitType) -> Self
fn from(v: TsTplLitType) -> Self
impl Eq for TsLit
impl StructuralPartialEq for TsLit
Auto Trait Implementations§
impl Freeze for TsLit
impl RefUnwindSafe for TsLit
impl Send for TsLit
impl Sync for TsLit
impl Unpin for TsLit
impl UnwindSafe for TsLit
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