pub struct Link {
pub the_type: Option<String>,
pub scope: Option<String>,
pub web_url: Option<String>,
pub web_html: Option<String>,
pub application: Option<Identity>,
}Expand description
Represents a collection of DriveItems.
Fields§
§the_type: Option<String>Type of the DriveItem
scope: Option<String>Scope of the DriveItem
web_url: Option<String>Web URL of the DriveItem
web_html: Option<String>HTML code for an <iframe> to host the content
application: Option<Identity>Application identity of the DriveItem
Trait Implementations§
source§impl<'de> Deserialize<'de> for Link
impl<'de> Deserialize<'de> for Link
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 RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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