pub struct TsConfigExtends(/* private fields */);Implementations§
Source§impl TsConfigExtends
impl TsConfigExtends
Sourcepub fn new(input: &str) -> Result<TsConfigExtends, TsConfigTextError>
pub fn new(input: &str) -> Result<TsConfigExtends, TsConfigTextError>
Creates non-empty tsconfig metadata text.
§Errors
Returns TsConfigTextError::Empty when input is empty after trimming.
Trait Implementations§
Source§impl Clone for TsConfigExtends
impl Clone for TsConfigExtends
Source§fn clone(&self) -> TsConfigExtends
fn clone(&self) -> TsConfigExtends
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 Debug for TsConfigExtends
impl Debug for TsConfigExtends
Source§impl<'de> Deserialize<'de> for TsConfigExtends
impl<'de> Deserialize<'de> for TsConfigExtends
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TsConfigExtends, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TsConfigExtends, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TsConfigExtends
impl Display for TsConfigExtends
Source§impl Hash for TsConfigExtends
impl Hash for TsConfigExtends
Source§impl Ord for TsConfigExtends
impl Ord for TsConfigExtends
Source§fn cmp(&self, other: &TsConfigExtends) -> Ordering
fn cmp(&self, other: &TsConfigExtends) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TsConfigExtends
impl PartialEq for TsConfigExtends
Source§fn eq(&self, other: &TsConfigExtends) -> bool
fn eq(&self, other: &TsConfigExtends) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TsConfigExtends
impl PartialOrd for TsConfigExtends
Source§impl Serialize for TsConfigExtends
impl Serialize for TsConfigExtends
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for TsConfigExtends
impl StructuralPartialEq for TsConfigExtends
Auto Trait Implementations§
impl Freeze for TsConfigExtends
impl RefUnwindSafe for TsConfigExtends
impl Send for TsConfigExtends
impl Sync for TsConfigExtends
impl Unpin for TsConfigExtends
impl UnsafeUnpin for TsConfigExtends
impl UnwindSafe for TsConfigExtends
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