pub struct DeleteFileOutput {
pub blob_id: String,
pub commit_id: String,
pub file_path: String,
pub tree_id: String,
}Fields§
§blob_id: StringThe blob ID removed from the tree as part of deleting the file.
commit_id: StringThe full commit ID of the commit that contains the change that deletes the file.
file_path: StringThe fully qualified path to the file to be deleted, including the full name and extension of that file.
tree_id: StringThe full SHA-1 pointer of the tree information for the commit that contains the delete file change.
Trait Implementations§
Source§impl Clone for DeleteFileOutput
impl Clone for DeleteFileOutput
Source§fn clone(&self) -> DeleteFileOutput
fn clone(&self) -> DeleteFileOutput
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 DeleteFileOutput
impl Debug for DeleteFileOutput
Source§impl Default for DeleteFileOutput
impl Default for DeleteFileOutput
Source§fn default() -> DeleteFileOutput
fn default() -> DeleteFileOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteFileOutput
impl<'de> Deserialize<'de> for DeleteFileOutput
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 DeleteFileOutput
impl PartialEq for DeleteFileOutput
impl StructuralPartialEq for DeleteFileOutput
Auto Trait Implementations§
impl Freeze for DeleteFileOutput
impl RefUnwindSafe for DeleteFileOutput
impl Send for DeleteFileOutput
impl Sync for DeleteFileOutput
impl Unpin for DeleteFileOutput
impl UnwindSafe for DeleteFileOutput
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