pub struct PropertyList {
pub etag: Option<String>,
pub items: Option<Vec<Property>>,
pub kind: Option<String>,
pub self_link: Option<String>,
}Expand description
A collection of properties, key-value pairs that are either public or private to an application.
§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 properties (response)
Fields§
§etag: Option<String>The ETag of the list.
items: Option<Vec<Property>>The list of properties.
kind: Option<String>This is always drive#propertyList.
self_link: Option<String>The link back to this list.
Trait Implementations§
Source§impl Clone for PropertyList
impl Clone for PropertyList
Source§fn clone(&self) -> PropertyList
fn clone(&self) -> PropertyList
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 PropertyList
impl Debug for PropertyList
Source§impl Default for PropertyList
impl Default for PropertyList
Source§fn default() -> PropertyList
fn default() -> PropertyList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyList
impl<'de> Deserialize<'de> for PropertyList
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 PropertyList
impl Serialize for PropertyList
impl ResponseResult for PropertyList
Auto Trait Implementations§
impl Freeze for PropertyList
impl RefUnwindSafe for PropertyList
impl Send for PropertyList
impl Sync for PropertyList
impl Unpin for PropertyList
impl UnwindSafe for PropertyList
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