pub enum Strength {
Drive(Box<DriveStrength>),
Charge(Box<ChargeStrength>),
}
Variants§
Drive(Box<DriveStrength>)
Charge(Box<ChargeStrength>)
Trait Implementations§
Source§impl<'a> IntoIterator for &'a Strength
impl<'a> IntoIterator for &'a Strength
impl StructuralPartialEq for Strength
Auto Trait Implementations§
impl Freeze for Strength
impl RefUnwindSafe for Strength
impl Send for Strength
impl Sync for Strength
impl Unpin for Strength
impl UnwindSafe for Strength
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