pub struct ParentList {
pub etag: Option<String>,
pub items: Option<Vec<ParentReference>>,
pub kind: Option<String>,
pub self_link: Option<String>,
}Expand description
A list of a file’s parents.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list parents (response)
Fields§
§etag: Option<String>The ETag of the list.
items: Option<Vec<ParentReference>>The list of parents.
kind: Option<String>This is always drive#parentList.
self_link: Option<String>A link back to this list.
Trait Implementations§
Source§impl Clone for ParentList
impl Clone for ParentList
Source§fn clone(&self) -> ParentList
fn clone(&self) -> ParentList
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 ParentList
impl Debug for ParentList
Source§impl Default for ParentList
impl Default for ParentList
Source§fn default() -> ParentList
fn default() -> ParentList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParentList
impl<'de> Deserialize<'de> for ParentList
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 Serialize for ParentList
impl Serialize for ParentList
impl ResponseResult for ParentList
Auto Trait Implementations§
impl Freeze for ParentList
impl RefUnwindSafe for ParentList
impl Send for ParentList
impl Sync for ParentList
impl Unpin for ParentList
impl UnwindSafe for ParentList
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