pub struct ExecutionScaffold {
pub package_name: &'static str,
pub kernel_package: &'static str,
pub target: &'static str,
pub planned_guest_runtimes: [GuestRuntime; 2],
}Fields§
§package_name: &'static str§kernel_package: &'static str§target: &'static str§planned_guest_runtimes: [GuestRuntime; 2]Trait Implementations§
Source§impl Clone for ExecutionScaffold
impl Clone for ExecutionScaffold
Source§fn clone(&self) -> ExecutionScaffold
fn clone(&self) -> ExecutionScaffold
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 moreimpl Copy for ExecutionScaffold
Source§impl Debug for ExecutionScaffold
impl Debug for ExecutionScaffold
impl Eq for ExecutionScaffold
Source§impl PartialEq for ExecutionScaffold
impl PartialEq for ExecutionScaffold
Source§fn eq(&self, other: &ExecutionScaffold) -> bool
fn eq(&self, other: &ExecutionScaffold) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionScaffold
Auto Trait Implementations§
impl Freeze for ExecutionScaffold
impl RefUnwindSafe for ExecutionScaffold
impl Send for ExecutionScaffold
impl Sync for ExecutionScaffold
impl Unpin for ExecutionScaffold
impl UnsafeUnpin for ExecutionScaffold
impl UnwindSafe for ExecutionScaffold
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