pub struct TreeEntryOutput {
pub name: String,
pub oid: String,
pub kind: String,
pub filemode: i32,
}Expand description
A tree entry.
Fields§
§name: String§oid: String§kind: String§filemode: i32Trait Implementations§
Source§impl Clone for TreeEntryOutput
impl Clone for TreeEntryOutput
Source§fn clone(&self) -> TreeEntryOutput
fn clone(&self) -> TreeEntryOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TreeEntryOutput
impl Debug for TreeEntryOutput
Source§impl<'de> Deserialize<'de> for TreeEntryOutput
impl<'de> Deserialize<'de> for TreeEntryOutput
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 TreeEntryOutput
impl RefUnwindSafe for TreeEntryOutput
impl Send for TreeEntryOutput
impl Sync for TreeEntryOutput
impl Unpin for TreeEntryOutput
impl UnsafeUnpin for TreeEntryOutput
impl UnwindSafe for TreeEntryOutput
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