pub enum Airflow {
FrontToRear,
RearToFront,
LeftToRight,
RightToLeft,
SideToRear,
RearToSide,
BottomToTop,
TopToBottom,
Passive,
Mixed,
Empty,
}Expand description
front-to-rear- Front to rear *rear-to-front- Rear to front *left-to-right- Left to right *right-to-left- Right to left *side-to-rear- Side to rear *rear-to-side- Rear to side *bottom-to-top- Bottom to top *top-to-bottom- Top to bottom *passive- Passive *mixed- Mixed
Variants§
FrontToRear
RearToFront
LeftToRight
RightToLeft
SideToRear
RearToSide
BottomToTop
TopToBottom
Passive
Mixed
Empty
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Airflow
impl<'de> Deserialize<'de> for Airflow
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 Ord for Airflow
impl Ord for Airflow
Source§impl PartialOrd for Airflow
impl PartialOrd for Airflow
impl Copy for Airflow
impl Eq for Airflow
impl StructuralPartialEq for Airflow
Auto Trait Implementations§
impl Freeze for Airflow
impl RefUnwindSafe for Airflow
impl Send for Airflow
impl Sync for Airflow
impl Unpin for Airflow
impl UnwindSafe for Airflow
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