pub enum CapacitorPolarity {
Polarized,
NonPolarized,
Unknown,
}Expand description
Descriptive capacitor polarity vocabulary.
Variants§
Trait Implementations§
Source§impl Clone for CapacitorPolarity
impl Clone for CapacitorPolarity
Source§fn clone(&self) -> CapacitorPolarity
fn clone(&self) -> CapacitorPolarity
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 CapacitorPolarity
impl Debug for CapacitorPolarity
Source§impl Display for CapacitorPolarity
impl Display for CapacitorPolarity
Source§impl FromStr for CapacitorPolarity
impl FromStr for CapacitorPolarity
Source§impl Hash for CapacitorPolarity
impl Hash for CapacitorPolarity
Source§impl Ord for CapacitorPolarity
impl Ord for CapacitorPolarity
Source§fn cmp(&self, other: &CapacitorPolarity) -> Ordering
fn cmp(&self, other: &CapacitorPolarity) -> 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 CapacitorPolarity
impl PartialEq for CapacitorPolarity
Source§fn eq(&self, other: &CapacitorPolarity) -> bool
fn eq(&self, other: &CapacitorPolarity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CapacitorPolarity
impl PartialOrd for CapacitorPolarity
impl Copy for CapacitorPolarity
impl Eq for CapacitorPolarity
impl StructuralPartialEq for CapacitorPolarity
Auto Trait Implementations§
impl Freeze for CapacitorPolarity
impl RefUnwindSafe for CapacitorPolarity
impl Send for CapacitorPolarity
impl Sync for CapacitorPolarity
impl Unpin for CapacitorPolarity
impl UnsafeUnpin for CapacitorPolarity
impl UnwindSafe for CapacitorPolarity
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