#[non_exhaustive]#[repr(u32)]pub enum DirectorState {
Null = 0,
Headers = 1,
Body = 2,
}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§
Source§impl Clone for DirectorState
impl Clone for DirectorState
Source§fn clone(&self) -> DirectorState
fn clone(&self) -> DirectorState
Returns a copy 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 DirectorState
impl Debug for DirectorState
Source§impl Hash for DirectorState
impl Hash for DirectorState
Source§impl PartialEq for DirectorState
impl PartialEq for DirectorState
impl Copy for DirectorState
impl Eq for DirectorState
impl StructuralPartialEq for DirectorState
Auto Trait Implementations§
impl Freeze for DirectorState
impl RefUnwindSafe for DirectorState
impl Send for DirectorState
impl Sync for DirectorState
impl Unpin for DirectorState
impl UnwindSafe for DirectorState
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