pub struct CommitSignedOutput {
pub oid: String,
pub message: String,
pub signed: bool,
}Expand description
Output of CommitSigned.
Fields§
§oid: StringThe OID of the signed commit.
message: StringThe commit message.
signed: boolWhether the commit is signed.
Trait Implementations§
Source§impl Clone for CommitSignedOutput
impl Clone for CommitSignedOutput
Source§fn clone(&self) -> CommitSignedOutput
fn clone(&self) -> CommitSignedOutput
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 CommitSignedOutput
impl Debug for CommitSignedOutput
Source§impl<'de> Deserialize<'de> for CommitSignedOutput
impl<'de> Deserialize<'de> for CommitSignedOutput
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 CommitSignedOutput
impl RefUnwindSafe for CommitSignedOutput
impl Send for CommitSignedOutput
impl Sync for CommitSignedOutput
impl Unpin for CommitSignedOutput
impl UnsafeUnpin for CommitSignedOutput
impl UnwindSafe for CommitSignedOutput
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