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