pub enum KernelProjection {
Idle,
Action(CanonicalHostAction),
Terminal(KernelTerminal),
}Variants§
Trait Implementations§
Source§impl Clone for KernelProjection
impl Clone for KernelProjection
Source§fn clone(&self) -> KernelProjection
fn clone(&self) -> KernelProjection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KernelProjection
impl Debug for KernelProjection
Source§impl<'de> Deserialize<'de> for KernelProjection
impl<'de> Deserialize<'de> for KernelProjection
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 PartialEq for KernelProjection
impl PartialEq for KernelProjection
Source§impl Serialize for KernelProjection
impl Serialize for KernelProjection
impl StructuralPartialEq for KernelProjection
Auto Trait Implementations§
impl Freeze for KernelProjection
impl RefUnwindSafe for KernelProjection
impl Send for KernelProjection
impl Sync for KernelProjection
impl Unpin for KernelProjection
impl UnsafeUnpin for KernelProjection
impl UnwindSafe for KernelProjection
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