pub struct GetCommitOutput {
pub commit: Commit,
}Expand description
Represents the output of a get commit operation.
Fields§
§commit: CommitA commit data type object that contains information about the specified commit.
Trait Implementations§
Source§impl Clone for GetCommitOutput
impl Clone for GetCommitOutput
Source§fn clone(&self) -> GetCommitOutput
fn clone(&self) -> GetCommitOutput
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 GetCommitOutput
impl Debug for GetCommitOutput
Source§impl Default for GetCommitOutput
impl Default for GetCommitOutput
Source§fn default() -> GetCommitOutput
fn default() -> GetCommitOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCommitOutput
impl<'de> Deserialize<'de> for GetCommitOutput
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 GetCommitOutput
impl PartialEq for GetCommitOutput
impl StructuralPartialEq for GetCommitOutput
Auto Trait Implementations§
impl Freeze for GetCommitOutput
impl RefUnwindSafe for GetCommitOutput
impl Send for GetCommitOutput
impl Sync for GetCommitOutput
impl Unpin for GetCommitOutput
impl UnwindSafe for GetCommitOutput
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