pub struct LockboxOwnerInspection {
pub signed: bool,
pub fingerprint: Option<String>,
}Expand description
Owner-signing metadata verified from an opened lockbox.
Fields§
§signed: boolWhether the latest commit has verified owner signatures.
fingerprint: Option<String>Stable fingerprint for the owner signing public keys, if signed.
Trait Implementations§
Source§impl Clone for LockboxOwnerInspection
impl Clone for LockboxOwnerInspection
Source§fn clone(&self) -> LockboxOwnerInspection
fn clone(&self) -> LockboxOwnerInspection
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 LockboxOwnerInspection
impl Debug for LockboxOwnerInspection
impl Eq for LockboxOwnerInspection
Source§impl PartialEq for LockboxOwnerInspection
impl PartialEq for LockboxOwnerInspection
impl StructuralPartialEq for LockboxOwnerInspection
Auto Trait Implementations§
impl Freeze for LockboxOwnerInspection
impl RefUnwindSafe for LockboxOwnerInspection
impl Send for LockboxOwnerInspection
impl Sync for LockboxOwnerInspection
impl Unpin for LockboxOwnerInspection
impl UnsafeUnpin for LockboxOwnerInspection
impl UnwindSafe for LockboxOwnerInspection
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