pub struct VerifyCommandResult {
pub command: CommandType,
pub artifact_id: String,
pub verified_key_ids: Vec<String>,
}Expand description
Returned on successful command verification.
Fields§
§command: CommandTypeThe discriminated, deserialized command payload.
artifact_id: StringContent-addressed artifact ID re-derived during verification.
verified_key_ids: Vec<String>Key IDs that signed this command (subset of the authorized set).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifyCommandResult
impl RefUnwindSafe for VerifyCommandResult
impl Send for VerifyCommandResult
impl Sync for VerifyCommandResult
impl Unpin for VerifyCommandResult
impl UnsafeUnpin for VerifyCommandResult
impl UnwindSafe for VerifyCommandResult
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