pub struct SandboxGrant {Show 13 fields
pub grant_id: String,
pub runtime: String,
pub profile: String,
pub env: Value,
pub network: Value,
pub declared_at: String,
pub runtime_version: Option<String>,
pub image_digest: Option<String>,
pub template_digest: Option<String>,
pub filesystem_preopens: Vec<Value>,
pub limits: Option<Value>,
pub policy_epoch: Option<String>,
pub grant_hash: Option<String>,
}Fields§
§grant_id: String§runtime: String§profile: String§env: Value§network: Value§declared_at: String§runtime_version: Option<String>§image_digest: Option<String>§template_digest: Option<String>§filesystem_preopens: Vec<Value>§limits: Option<Value>§policy_epoch: Option<String>§grant_hash: Option<String>Trait Implementations§
Source§impl Clone for SandboxGrant
impl Clone for SandboxGrant
Source§fn clone(&self) -> SandboxGrant
fn clone(&self) -> SandboxGrant
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 SandboxGrant
impl Debug for SandboxGrant
Source§impl<'de> Deserialize<'de> for SandboxGrant
impl<'de> Deserialize<'de> for SandboxGrant
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
Auto Trait Implementations§
impl Freeze for SandboxGrant
impl RefUnwindSafe for SandboxGrant
impl Send for SandboxGrant
impl Sync for SandboxGrant
impl Unpin for SandboxGrant
impl UnsafeUnpin for SandboxGrant
impl UnwindSafe for SandboxGrant
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