#[non_exhaustive]#[repr(u32)]pub enum VclEvent {
Load = 0,
Warm = 1,
Cold = 2,
Discard = 3,
Sick = 4,
}Expand description
Events sent to VMODs and directors:
- VCL: VCL temperature events
- VDI: director events
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for VclEvent
impl Eq for VclEvent
impl StructuralPartialEq for VclEvent
Auto Trait Implementations§
impl Freeze for VclEvent
impl RefUnwindSafe for VclEvent
impl Send for VclEvent
impl Sync for VclEvent
impl Unpin for VclEvent
impl UnwindSafe for VclEvent
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