pub struct SandboxPreflightResult {
pub verdict: Option<SandboxPreflightResultVerdict>,
pub reason_code: Option<String>,
pub grant_id: Option<String>,
pub grant_hash: Option<String>,
pub dispatch_ready: Option<bool>,
pub findings: Option<Vec<String>>,
pub checked_at: Option<String>,
}Fields§
§verdict: Option<SandboxPreflightResultVerdict>§reason_code: Option<String>§grant_id: Option<String>§grant_hash: Option<String>§dispatch_ready: Option<bool>§findings: Option<Vec<String>>§checked_at: Option<String>Implementations§
Source§impl SandboxPreflightResult
impl SandboxPreflightResult
pub fn new() -> SandboxPreflightResult
Trait Implementations§
Source§impl Clone for SandboxPreflightResult
impl Clone for SandboxPreflightResult
Source§fn clone(&self) -> SandboxPreflightResult
fn clone(&self) -> SandboxPreflightResult
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 SandboxPreflightResult
impl Debug for SandboxPreflightResult
Source§impl Default for SandboxPreflightResult
impl Default for SandboxPreflightResult
Source§fn default() -> SandboxPreflightResult
fn default() -> SandboxPreflightResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SandboxPreflightResult
impl<'de> Deserialize<'de> for SandboxPreflightResult
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
Source§impl PartialEq for SandboxPreflightResult
impl PartialEq for SandboxPreflightResult
Source§fn eq(&self, other: &SandboxPreflightResult) -> bool
fn eq(&self, other: &SandboxPreflightResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SandboxPreflightResult
impl Serialize for SandboxPreflightResult
impl StructuralPartialEq for SandboxPreflightResult
Auto Trait Implementations§
impl Freeze for SandboxPreflightResult
impl RefUnwindSafe for SandboxPreflightResult
impl Send for SandboxPreflightResult
impl Sync for SandboxPreflightResult
impl Unpin for SandboxPreflightResult
impl UnsafeUnpin for SandboxPreflightResult
impl UnwindSafe for SandboxPreflightResult
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