pub struct ContentSymlink {
pub type: Type,
pub target: 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 _links: Box<ContentTreeEntriesInnerLinks>,
}
Expand description
ContentSymlink : An object describing a symlink
Fields§
§type: Type
§target: String
§size: i32
§name: String
§path: 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 ContentSymlink
impl Clone for ContentSymlink
Source§fn clone(&self) -> ContentSymlink
fn clone(&self) -> ContentSymlink
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 ContentSymlink
impl Debug for ContentSymlink
Source§impl Default for ContentSymlink
impl Default for ContentSymlink
Source§fn default() -> ContentSymlink
fn default() -> ContentSymlink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContentSymlink
impl<'de> Deserialize<'de> for ContentSymlink
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 ContentSymlink
impl PartialEq for ContentSymlink
Source§impl Serialize for ContentSymlink
impl Serialize for ContentSymlink
impl StructuralPartialEq for ContentSymlink
Auto Trait Implementations§
impl Freeze for ContentSymlink
impl RefUnwindSafe for ContentSymlink
impl Send for ContentSymlink
impl Sync for ContentSymlink
impl Unpin for ContentSymlink
impl UnwindSafe for ContentSymlink
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