pub enum ChargeStrength {
    Small(Box<ChargeStrengthSmall>),
    Medium(Box<ChargeStrengthMedium>),
    Large(Box<ChargeStrengthLarge>),
}Variants§
Trait Implementations§
Source§impl Clone for ChargeStrength
 
impl Clone for ChargeStrength
Source§fn clone(&self) -> ChargeStrength
 
fn clone(&self) -> ChargeStrength
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 ChargeStrength
 
impl Debug for ChargeStrength
Source§impl<'a> From<&'a ChargeStrength> for RefNode<'a>
 
impl<'a> From<&'a ChargeStrength> for RefNode<'a>
Source§fn from(x: &'a ChargeStrength) -> RefNode<'a>
 
fn from(x: &'a ChargeStrength) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ChargeStrength> for RefNodes<'a>
 
impl<'a> From<&'a ChargeStrength> for RefNodes<'a>
Source§fn from(x: &'a ChargeStrength) -> RefNodes<'a>
 
fn from(x: &'a ChargeStrength) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ChargeStrength> for AnyNode
 
impl From<ChargeStrength> for AnyNode
Source§fn from(x: ChargeStrength) -> AnyNode
 
fn from(x: ChargeStrength) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ChargeStrength
 
impl<'a> IntoIterator for &'a ChargeStrength
Source§impl PartialEq for ChargeStrength
 
impl PartialEq for ChargeStrength
Source§impl<'a> TryFrom<&'a ChargeStrength> for Locate
 
impl<'a> TryFrom<&'a ChargeStrength> for Locate
Source§impl TryFrom<AnyNode> for ChargeStrength
 
impl TryFrom<AnyNode> for ChargeStrength
Source§impl TryFrom<ChargeStrength> for Locate
 
impl TryFrom<ChargeStrength> for Locate
impl StructuralPartialEq for ChargeStrength
Auto Trait Implementations§
impl Freeze for ChargeStrength
impl RefUnwindSafe for ChargeStrength
impl Send for ChargeStrength
impl Sync for ChargeStrength
impl Unpin for ChargeStrength
impl UnwindSafe for ChargeStrength
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