pub struct CommitSignature {
pub scheme: String,
pub key_id: Option<String>,
pub signature: Vec<u8>,
}Fields§
§scheme: String§key_id: Option<String>§signature: Vec<u8>Trait Implementations§
Source§impl Clone for CommitSignature
impl Clone for CommitSignature
Source§fn clone(&self) -> CommitSignature
fn clone(&self) -> CommitSignature
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 CommitSignature
impl Debug for CommitSignature
Source§impl<'de> Deserialize<'de> for CommitSignature
impl<'de> Deserialize<'de> for CommitSignature
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
Source§impl PartialEq for CommitSignature
impl PartialEq for CommitSignature
Source§impl Serialize for CommitSignature
impl Serialize for CommitSignature
impl Eq for CommitSignature
impl StructuralPartialEq for CommitSignature
Auto Trait Implementations§
impl Freeze for CommitSignature
impl RefUnwindSafe for CommitSignature
impl Send for CommitSignature
impl Sync for CommitSignature
impl Unpin for CommitSignature
impl UnsafeUnpin for CommitSignature
impl UnwindSafe for CommitSignature
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