pub enum ParameterCapable {
Capable,
NotCapable,
}Expand description
Custom defined enum to model the capability of a parameter in the
FundamentalOperationalData record.
Variants§
Trait Implementations§
Source§impl Clone for ParameterCapable
impl Clone for ParameterCapable
Source§fn clone(&self) -> ParameterCapable
fn clone(&self) -> ParameterCapable
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 ParameterCapable
impl Debug for ParameterCapable
Source§impl Default for ParameterCapable
impl Default for ParameterCapable
Source§fn default() -> ParameterCapable
fn default() -> ParameterCapable
Returns the “default value” for a type. Read more
Source§impl From<&ParameterCapable> for u8
impl From<&ParameterCapable> for u8
Source§fn from(value: &ParameterCapable) -> Self
fn from(value: &ParameterCapable) -> Self
Converts to this type from the input type.
Source§impl From<u8> for ParameterCapable
impl From<u8> for ParameterCapable
Source§impl PartialEq for ParameterCapable
impl PartialEq for ParameterCapable
impl Copy for ParameterCapable
impl StructuralPartialEq for ParameterCapable
Auto Trait Implementations§
impl Freeze for ParameterCapable
impl RefUnwindSafe for ParameterCapable
impl Send for ParameterCapable
impl Sync for ParameterCapable
impl Unpin for ParameterCapable
impl UnwindSafe for ParameterCapable
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