pub struct SandboxEvidence {
pub control: SandboxControl,
pub achieved: bool,
pub detail: String,
}Expand description
Evidence for one requested control; only launchers may assert achieved.
Fields§
§control: SandboxControlRequested control.
achieved: boolTrue only when backed by launcher evidence.
detail: StringNon-secret operational proof.
Trait Implementations§
Source§impl Clone for SandboxEvidence
impl Clone for SandboxEvidence
Source§fn clone(&self) -> SandboxEvidence
fn clone(&self) -> SandboxEvidence
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 SandboxEvidence
impl Debug for SandboxEvidence
impl Eq for SandboxEvidence
Source§impl PartialEq for SandboxEvidence
impl PartialEq for SandboxEvidence
impl StructuralPartialEq for SandboxEvidence
Auto Trait Implementations§
impl Freeze for SandboxEvidence
impl RefUnwindSafe for SandboxEvidence
impl Send for SandboxEvidence
impl Sync for SandboxEvidence
impl Unpin for SandboxEvidence
impl UnsafeUnpin for SandboxEvidence
impl UnwindSafe for SandboxEvidence
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