pub enum AngularConfigFile {
AngularJson,
TsConfigAppJson,
TsConfigSpecJson,
}Expand description
Common Angular config file labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AngularConfigFile
impl Clone for AngularConfigFile
Source§fn clone(&self) -> AngularConfigFile
fn clone(&self) -> AngularConfigFile
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 AngularConfigFile
impl Debug for AngularConfigFile
Source§impl Display for AngularConfigFile
impl Display for AngularConfigFile
Source§impl FromStr for AngularConfigFile
impl FromStr for AngularConfigFile
Source§type Err = AngularNameError
type Err = AngularNameError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<AngularConfigFile, <AngularConfigFile as FromStr>::Err>
fn from_str( input: &str, ) -> Result<AngularConfigFile, <AngularConfigFile as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AngularConfigFile
impl Hash for AngularConfigFile
Source§impl Ord for AngularConfigFile
impl Ord for AngularConfigFile
Source§fn cmp(&self, other: &AngularConfigFile) -> Ordering
fn cmp(&self, other: &AngularConfigFile) -> 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 AngularConfigFile
impl PartialEq for AngularConfigFile
Source§fn eq(&self, other: &AngularConfigFile) -> bool
fn eq(&self, other: &AngularConfigFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AngularConfigFile
impl PartialOrd for AngularConfigFile
impl Copy for AngularConfigFile
impl Eq for AngularConfigFile
impl StructuralPartialEq for AngularConfigFile
Auto Trait Implementations§
impl Freeze for AngularConfigFile
impl RefUnwindSafe for AngularConfigFile
impl Send for AngularConfigFile
impl Sync for AngularConfigFile
impl Unpin for AngularConfigFile
impl UnsafeUnpin for AngularConfigFile
impl UnwindSafe for AngularConfigFile
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