pub struct SiloDetailSnapshot {Show 15 fields
pub base: SiloSnapshot,
pub family: StrateFamily,
pub sandboxed: bool,
pub cpu_shares: u32,
pub cpu_affinity_mask: u64,
pub max_tasks: u32,
pub task_ids: Vec<u64>,
pub unveil_rules: Vec<(String, u8)>,
pub granted_caps_count: usize,
pub cpu_features_required: u64,
pub cpu_features_allowed: u64,
pub xcr0_mask: u64,
pub graphics_flags: u64,
pub graphics_max_sessions: u16,
pub graphics_session_ttl_sec: u32,
}Fields§
§base: SiloSnapshot§family: StrateFamily§sandboxed: bool§cpu_affinity_mask: u64§max_tasks: u32§task_ids: Vec<u64>§unveil_rules: Vec<(String, u8)>§granted_caps_count: usize§cpu_features_required: u64§cpu_features_allowed: u64§xcr0_mask: u64§graphics_flags: u64§graphics_max_sessions: u16§graphics_session_ttl_sec: u32Trait Implementations§
Source§impl Clone for SiloDetailSnapshot
impl Clone for SiloDetailSnapshot
Source§fn clone(&self) -> SiloDetailSnapshot
fn clone(&self) -> SiloDetailSnapshot
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SiloDetailSnapshot
impl RefUnwindSafe for SiloDetailSnapshot
impl Send for SiloDetailSnapshot
impl Sync for SiloDetailSnapshot
impl Unpin for SiloDetailSnapshot
impl UnsafeUnpin for SiloDetailSnapshot
impl UnwindSafe for SiloDetailSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more