pub struct SignResult {
pub envelope: Envelope,
pub allowed: bool,
pub blocked: bool,
pub held: bool,
pub decision: String,
pub reason: Option<String>,
pub action_id: Option<String>,
pub evidence_id: Option<String>,
pub signature_valid: bool,
}Expand description
Result of a sign operation.
Fields§
§envelope: Envelope§allowed: bool§blocked: bool§held: bool§decision: String§reason: Option<String>§action_id: Option<String>§evidence_id: Option<String>§signature_valid: boolTrait Implementations§
Source§impl Clone for SignResult
impl Clone for SignResult
Source§fn clone(&self) -> SignResult
fn clone(&self) -> SignResult
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 SignResult
impl RefUnwindSafe for SignResult
impl Send for SignResult
impl Sync for SignResult
impl Unpin for SignResult
impl UnsafeUnpin for SignResult
impl UnwindSafe for SignResult
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