pub struct GittreeTree {
pub path: Option<String>,
pub mode: Option<String>,
pub _type: Option<String>,
pub sha: Option<String>,
pub size: Option<i64>,
pub url: Option<String>,
}Fields§
§path: Option<String>§mode: Option<String>§_type: Option<String>§sha: Option<String>§size: Option<i64>§url: Option<String>Trait Implementations§
Source§impl Clone for GittreeTree
impl Clone for GittreeTree
Source§fn clone(&self) -> GittreeTree
fn clone(&self) -> GittreeTree
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 GittreeTree
impl Debug for GittreeTree
Source§impl Default for GittreeTree
impl Default for GittreeTree
Source§fn default() -> GittreeTree
fn default() -> GittreeTree
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GittreeTree
impl<'de> Deserialize<'de> for GittreeTree
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 GittreeTree
impl PartialEq for GittreeTree
Source§impl Serialize for GittreeTree
impl Serialize for GittreeTree
impl StructuralPartialEq for GittreeTree
Auto Trait Implementations§
impl Freeze for GittreeTree
impl RefUnwindSafe for GittreeTree
impl Send for GittreeTree
impl Sync for GittreeTree
impl Unpin for GittreeTree
impl UnwindSafe for GittreeTree
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