pub struct ContentTree {
pub type: String,
pub size: i32,
pub name: String,
pub path: String,
pub sha: String,
pub url: String,
pub git_url: Option<String>,
pub html_url: Option<String>,
pub download_url: Option<String>,
pub entries: Option<Vec<ContentTreeEntriesInner>>,
pub _links: Box<ContentTreeEntriesInnerLinks>,
}
Expand description
ContentTree : Content Tree
Fields§
§type: String
§size: i32
§name: String
§path: String
§sha: String
§url: String
§git_url: Option<String>
§html_url: Option<String>
§download_url: Option<String>
§entries: Option<Vec<ContentTreeEntriesInner>>
§_links: Box<ContentTreeEntriesInnerLinks>
Implementations§
Trait Implementations§
Source§impl Clone for ContentTree
impl Clone for ContentTree
Source§fn clone(&self) -> ContentTree
fn clone(&self) -> ContentTree
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 ContentTree
impl Debug for ContentTree
Source§impl Default for ContentTree
impl Default for ContentTree
Source§fn default() -> ContentTree
fn default() -> ContentTree
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContentTree
impl<'de> Deserialize<'de> for ContentTree
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 ContentTree
impl PartialEq for ContentTree
Source§impl Serialize for ContentTree
impl Serialize for ContentTree
impl StructuralPartialEq for ContentTree
Auto Trait Implementations§
impl Freeze for ContentTree
impl RefUnwindSafe for ContentTree
impl Send for ContentTree
impl Sync for ContentTree
impl Unpin for ContentTree
impl UnwindSafe for ContentTree
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