pub struct SignedMessage {
pub message: Message,
pub git_identity: GitIdentity,
pub signature: Option<String>,
pub verified: Option<bool>,
}Expand description
A message with an attached SSH signature.
Fields§
§message: Message§git_identity: GitIdentity§signature: Option<String>§verified: Option<bool>Trait Implementations§
Source§impl Clone for SignedMessage
impl Clone for SignedMessage
Source§fn clone(&self) -> SignedMessage
fn clone(&self) -> SignedMessage
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 moreSource§impl Debug for SignedMessage
impl Debug for SignedMessage
Source§impl<'de> Deserialize<'de> for SignedMessage
impl<'de> Deserialize<'de> for SignedMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignedMessage
impl RefUnwindSafe for SignedMessage
impl Send for SignedMessage
impl Sync for SignedMessage
impl Unpin for SignedMessage
impl UnsafeUnpin for SignedMessage
impl UnwindSafe for SignedMessage
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