pub struct PutFileOutput {
pub blob_id: String,
pub commit_id: String,
pub tree_id: String,
}Fields§
§blob_id: StringThe ID of the blob, which is its SHA-1 pointer.
commit_id: StringThe full SHA ID of the commit that contains this file change.
tree_id: StringThe full SHA-1 pointer of the tree information for the commit that contains this file change.
Trait Implementations§
Source§impl Clone for PutFileOutput
impl Clone for PutFileOutput
Source§fn clone(&self) -> PutFileOutput
fn clone(&self) -> PutFileOutput
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 PutFileOutput
impl Debug for PutFileOutput
Source§impl Default for PutFileOutput
impl Default for PutFileOutput
Source§fn default() -> PutFileOutput
fn default() -> PutFileOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutFileOutput
impl<'de> Deserialize<'de> for PutFileOutput
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 PutFileOutput
impl PartialEq for PutFileOutput
impl StructuralPartialEq for PutFileOutput
Auto Trait Implementations§
impl Freeze for PutFileOutput
impl RefUnwindSafe for PutFileOutput
impl Send for PutFileOutput
impl Sync for PutFileOutput
impl Unpin for PutFileOutput
impl UnwindSafe for PutFileOutput
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