pub struct KernelArguments {
pub should_exist: Option<Vec<KernelArgument>>,
pub should_not_exist: Option<Vec<KernelArgument>>,
}Fields§
§should_exist: Option<Vec<KernelArgument>>§should_not_exist: Option<Vec<KernelArgument>>Trait Implementations§
Source§impl Clone for KernelArguments
impl Clone for KernelArguments
Source§fn clone(&self) -> KernelArguments
fn clone(&self) -> KernelArguments
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 KernelArguments
impl Debug for KernelArguments
Source§impl Default for KernelArguments
impl Default for KernelArguments
Source§fn default() -> KernelArguments
fn default() -> KernelArguments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KernelArguments
impl<'de> Deserialize<'de> for KernelArguments
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 KernelArguments
impl PartialEq for KernelArguments
Source§fn eq(&self, other: &KernelArguments) -> bool
fn eq(&self, other: &KernelArguments) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KernelArguments
impl Serialize for KernelArguments
impl StructuralPartialEq for KernelArguments
Auto Trait Implementations§
impl Freeze for KernelArguments
impl RefUnwindSafe for KernelArguments
impl Send for KernelArguments
impl Sync for KernelArguments
impl Unpin for KernelArguments
impl UnsafeUnpin for KernelArguments
impl UnwindSafe for KernelArguments
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