pub struct RunSpec {
pub uid: String,
pub image: String,
pub command: Vec<String>,
pub env: Vec<(String, String)>,
}Expand description
What veloslet asks the runtime to launch.
Fields§
§uid: String§image: String§command: Vec<String>§env: Vec<(String, String)>Trait Implementations§
impl Eq for RunSpec
impl StructuralPartialEq for RunSpec
Auto Trait Implementations§
impl Freeze for RunSpec
impl RefUnwindSafe for RunSpec
impl Send for RunSpec
impl Sync for RunSpec
impl Unpin for RunSpec
impl UnsafeUnpin for RunSpec
impl UnwindSafe for RunSpec
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