Enum GroundKind
pub enum GroundKind {
Ground,
AnalogGround,
DigitalGround,
ChassisGround,
EarthGround,
Unknown,
Custom(String),
}Expand description
Common ground label vocabulary.
Variants§
Trait Implementations§
§impl Clone for GroundKind
impl Clone for GroundKind
§fn clone(&self) -> GroundKind
fn clone(&self) -> GroundKind
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 more§impl Debug for GroundKind
impl Debug for GroundKind
§impl Display for GroundKind
impl Display for GroundKind
§impl FromStr for GroundKind
impl FromStr for GroundKind
§impl Hash for GroundKind
impl Hash for GroundKind
§impl Ord for GroundKind
impl Ord for GroundKind
§impl PartialEq for GroundKind
impl PartialEq for GroundKind
§impl PartialOrd for GroundKind
impl PartialOrd for GroundKind
impl Eq for GroundKind
impl StructuralPartialEq for GroundKind
Auto Trait Implementations§
impl Freeze for GroundKind
impl RefUnwindSafe for GroundKind
impl Send for GroundKind
impl Sync for GroundKind
impl Unpin for GroundKind
impl UnsafeUnpin for GroundKind
impl UnwindSafe for GroundKind
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