pub enum ParkAction {
Send {
written: u16,
close_after: bool,
},
Park,
Close(&'static [u8]),
}Variants§
Auto Trait Implementations§
impl Freeze for ParkAction
impl RefUnwindSafe for ParkAction
impl Send for ParkAction
impl Sync for ParkAction
impl Unpin for ParkAction
impl UnsafeUnpin for ParkAction
impl UnwindSafe for ParkAction
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