pub struct SubscriptionsListResponse {
pub items: Option<Vec<Subscription>>,
pub kind: Option<String>,
}Expand description
A list of Subscriptions. This is the response from the server to GET requests on the subscription collection.
§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 subscriptions (response)
Fields§
§items: Option<Vec<Subscription>>The list of subscriptions.
kind: Option<String>The type of resource. This is always mirror#subscriptionsList.
Trait Implementations§
Source§impl Clone for SubscriptionsListResponse
impl Clone for SubscriptionsListResponse
Source§fn clone(&self) -> SubscriptionsListResponse
fn clone(&self) -> SubscriptionsListResponse
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 SubscriptionsListResponse
impl Debug for SubscriptionsListResponse
Source§impl Default for SubscriptionsListResponse
impl Default for SubscriptionsListResponse
Source§fn default() -> SubscriptionsListResponse
fn default() -> SubscriptionsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubscriptionsListResponse
impl<'de> Deserialize<'de> for SubscriptionsListResponse
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
impl ResponseResult for SubscriptionsListResponse
Auto Trait Implementations§
impl Freeze for SubscriptionsListResponse
impl RefUnwindSafe for SubscriptionsListResponse
impl Send for SubscriptionsListResponse
impl Sync for SubscriptionsListResponse
impl Unpin for SubscriptionsListResponse
impl UnwindSafe for SubscriptionsListResponse
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