pub struct ExtractedSignature {
pub signature_pem: String,
pub signed_payload: String,
}Expand description
Extracted SSH signature and signed payload from a git commit object.
Fields§
§signature_pem: StringThe SSH signature PEM block.
signed_payload: StringThe commit content with the gpgsig header removed (the signed payload).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtractedSignature
impl RefUnwindSafe for ExtractedSignature
impl Send for ExtractedSignature
impl Sync for ExtractedSignature
impl Unpin for ExtractedSignature
impl UnsafeUnpin for ExtractedSignature
impl UnwindSafe for ExtractedSignature
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