pub enum SupportMaturity {
SupportedByDefault,
AlmostSupported,
NotSupportedOrDisabledByDefault,
SupportedUsingAPolyfill,
SupportUnknown,
}Expand description
Represents the maturity of support in an agent
Variants§
SupportedByDefault
AlmostSupported
NotSupportedOrDisabledByDefault
SupportedUsingAPolyfill
SupportUnknown
Trait Implementations§
Source§impl Clone for SupportMaturity
impl Clone for SupportMaturity
Source§fn clone(&self) -> SupportMaturity
fn clone(&self) -> SupportMaturity
Returns a duplicate of the value. Read more
1.0.0 · 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 SupportMaturity
impl Debug for SupportMaturity
Source§impl Default for SupportMaturity
impl Default for SupportMaturity
Source§impl Hash for SupportMaturity
impl Hash for SupportMaturity
Source§impl Ord for SupportMaturity
impl Ord for SupportMaturity
Source§fn cmp(&self, other: &SupportMaturity) -> Ordering
fn cmp(&self, other: &SupportMaturity) -> Ordering
1.21.0 · 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 SupportMaturity
impl PartialEq for SupportMaturity
Source§impl PartialOrd for SupportMaturity
impl PartialOrd for SupportMaturity
impl Copy for SupportMaturity
impl Eq for SupportMaturity
impl StructuralPartialEq for SupportMaturity
Auto Trait Implementations§
impl Freeze for SupportMaturity
impl RefUnwindSafe for SupportMaturity
impl Send for SupportMaturity
impl Sync for SupportMaturity
impl Unpin for SupportMaturity
impl UnwindSafe for SupportMaturity
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