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