pub struct CreateCommitOutput {
pub commit_id: Option<String>,
pub files_added: Option<Vec<FileMetadata>>,
pub files_deleted: Option<Vec<FileMetadata>>,
pub files_updated: Option<Vec<FileMetadata>>,
pub tree_id: Option<String>,
}Fields§
§commit_id: Option<String>The full commit ID of the commit that contains your committed file changes.
files_added: Option<Vec<FileMetadata>>The files added as part of the committed file changes.
files_deleted: Option<Vec<FileMetadata>>The files deleted as part of the committed file changes.
files_updated: Option<Vec<FileMetadata>>The files updated as part of the commited file changes.
tree_id: Option<String>The full SHA-1 pointer of the tree information for the commit that contains the commited file changes.
Trait Implementations§
Source§impl Clone for CreateCommitOutput
impl Clone for CreateCommitOutput
Source§fn clone(&self) -> CreateCommitOutput
fn clone(&self) -> CreateCommitOutput
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 CreateCommitOutput
impl Debug for CreateCommitOutput
Source§impl Default for CreateCommitOutput
impl Default for CreateCommitOutput
Source§fn default() -> CreateCommitOutput
fn default() -> CreateCommitOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateCommitOutput
impl<'de> Deserialize<'de> for CreateCommitOutput
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 CreateCommitOutput
impl PartialEq for CreateCommitOutput
impl StructuralPartialEq for CreateCommitOutput
Auto Trait Implementations§
impl Freeze for CreateCommitOutput
impl RefUnwindSafe for CreateCommitOutput
impl Send for CreateCommitOutput
impl Sync for CreateCommitOutput
impl Unpin for CreateCommitOutput
impl UnwindSafe for CreateCommitOutput
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