#[repr(u8)]pub enum AirflowDirection {
Forward = 0,
Reverse = 1,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AirflowDirection
impl Clone for AirflowDirection
Source§fn clone(&self) -> AirflowDirection
fn clone(&self) -> AirflowDirection
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 AirflowDirection
impl Debug for AirflowDirection
Source§impl<'de> Deserialize<'de> for AirflowDirection
impl<'de> Deserialize<'de> for AirflowDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AirflowDirection> for u8
impl From<AirflowDirection> for u8
Source§fn from(val: AirflowDirection) -> Self
fn from(val: AirflowDirection) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AirflowDirection
impl PartialEq for AirflowDirection
Source§impl Serialize for AirflowDirection
impl Serialize for AirflowDirection
impl Copy for AirflowDirection
impl Eq for AirflowDirection
impl StructuralPartialEq for AirflowDirection
Auto Trait Implementations§
impl Freeze for AirflowDirection
impl RefUnwindSafe for AirflowDirection
impl Send for AirflowDirection
impl Sync for AirflowDirection
impl Unpin for AirflowDirection
impl UnwindSafe for AirflowDirection
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