pub enum AngularVersionFamily {
Show 19 variants
Angular2,
Angular3,
Angular4,
Angular5,
Angular6,
Angular7,
Angular8,
Angular9,
Angular10,
Angular11,
Angular12,
Angular13,
Angular14,
Angular15,
Angular16,
Angular17,
Angular18,
Angular19,
Angular20,
}Expand description
Angular version-family labels.
Variants§
Angular2
Angular3
Angular4
Angular5
Angular6
Angular7
Angular8
Angular9
Angular10
Angular11
Angular12
Angular13
Angular14
Angular15
Angular16
Angular17
Angular18
Angular19
Angular20
Implementations§
Trait Implementations§
Source§impl Clone for AngularVersionFamily
impl Clone for AngularVersionFamily
Source§fn clone(&self) -> AngularVersionFamily
fn clone(&self) -> AngularVersionFamily
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 AngularVersionFamily
impl Debug for AngularVersionFamily
Source§impl Display for AngularVersionFamily
impl Display for AngularVersionFamily
Source§impl FromStr for AngularVersionFamily
impl FromStr for AngularVersionFamily
Source§type Err = AngularNameError
type Err = AngularNameError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<AngularVersionFamily, <AngularVersionFamily as FromStr>::Err>
fn from_str( input: &str, ) -> Result<AngularVersionFamily, <AngularVersionFamily as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AngularVersionFamily
impl Hash for AngularVersionFamily
Source§impl Ord for AngularVersionFamily
impl Ord for AngularVersionFamily
Source§fn cmp(&self, other: &AngularVersionFamily) -> Ordering
fn cmp(&self, other: &AngularVersionFamily) -> 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 AngularVersionFamily
impl PartialEq for AngularVersionFamily
Source§fn eq(&self, other: &AngularVersionFamily) -> bool
fn eq(&self, other: &AngularVersionFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AngularVersionFamily
impl PartialOrd for AngularVersionFamily
impl Copy for AngularVersionFamily
impl Eq for AngularVersionFamily
impl StructuralPartialEq for AngularVersionFamily
Auto Trait Implementations§
impl Freeze for AngularVersionFamily
impl RefUnwindSafe for AngularVersionFamily
impl Send for AngularVersionFamily
impl Sync for AngularVersionFamily
impl Unpin for AngularVersionFamily
impl UnsafeUnpin for AngularVersionFamily
impl UnwindSafe for AngularVersionFamily
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