pub struct GitCommitResult {
pub commit_id: String,
pub message: String,
pub file_count: usize,
}Expand description
Result of a git commit operation.
Fields§
§commit_id: StringThe commit hash (SHA).
message: StringThe commit message.
file_count: usizeNumber of files in the commit.
Trait Implementations§
Source§impl Clone for GitCommitResult
impl Clone for GitCommitResult
Source§fn clone(&self) -> GitCommitResult
fn clone(&self) -> GitCommitResult
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 GitCommitResult
impl Debug for GitCommitResult
Source§impl<'de> Deserialize<'de> for GitCommitResult
impl<'de> Deserialize<'de> for GitCommitResult
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 GitCommitResult
impl RefUnwindSafe for GitCommitResult
impl Send for GitCommitResult
impl Sync for GitCommitResult
impl Unpin for GitCommitResult
impl UnwindSafe for GitCommitResult
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