pub struct Input<'a> {
pub kernel_args: Vec<Cow<'a, str>>,
pub app_args: Vec<Cow<'a, str>>,
pub env_vars: Vec<Cow<'a, str>>,
}Available on crate feature
loader only.Expand description
Input parameter for the kernel and application
Fields§
§kernel_args: Vec<Cow<'a, str>>Arguments to be passed to the kernel
app_args: Vec<Cow<'a, str>>Arguments to be passed to the application
env_vars: Vec<Cow<'a, str>>Environment variables
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Input<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Input<'a>
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
impl<'a> StructuralPartialEq for Input<'a>
Auto Trait Implementations§
impl<'a> Freeze for Input<'a>
impl<'a> RefUnwindSafe for Input<'a>
impl<'a> Send for Input<'a>
impl<'a> Sync for Input<'a>
impl<'a> Unpin for Input<'a>
impl<'a> UnwindSafe for Input<'a>
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