pub enum TargetTier {
T1,
T2,
T2_5,
T3,
Unknown,
}
Expand description
Support tier for a target
Variants§
Trait Implementations§
Source§impl Clone for TargetTier
impl Clone for TargetTier
Source§fn clone(&self) -> TargetTier
fn clone(&self) -> TargetTier
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 TargetTier
impl Debug for TargetTier
Source§impl Hash for TargetTier
impl Hash for TargetTier
Source§impl PartialEq for TargetTier
impl PartialEq for TargetTier
impl Copy for TargetTier
impl Eq for TargetTier
impl StructuralPartialEq for TargetTier
Auto Trait Implementations§
impl Freeze for TargetTier
impl RefUnwindSafe for TargetTier
impl Send for TargetTier
impl Sync for TargetTier
impl Unpin for TargetTier
impl UnwindSafe for TargetTier
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