pub struct GetCommitInput {
pub commit_id: String,
pub repository_name: String,
}Expand description
Represents the input of a get commit operation.
Fields§
§commit_id: StringThe commit ID. Commit IDs are the full SHA ID of the commit.
repository_name: StringThe name of the repository to which the commit was made.
Trait Implementations§
Source§impl Clone for GetCommitInput
impl Clone for GetCommitInput
Source§fn clone(&self) -> GetCommitInput
fn clone(&self) -> GetCommitInput
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 GetCommitInput
impl Debug for GetCommitInput
Source§impl Default for GetCommitInput
impl Default for GetCommitInput
Source§fn default() -> GetCommitInput
fn default() -> GetCommitInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetCommitInput
impl PartialEq for GetCommitInput
Source§impl Serialize for GetCommitInput
impl Serialize for GetCommitInput
impl StructuralPartialEq for GetCommitInput
Auto Trait Implementations§
impl Freeze for GetCommitInput
impl RefUnwindSafe for GetCommitInput
impl Send for GetCommitInput
impl Sync for GetCommitInput
impl Unpin for GetCommitInput
impl UnwindSafe for GetCommitInput
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