pub struct NotificationChannelList {
pub value: Vec<NotificationChannel>,
pub next_link: Option<String>,
}Expand description
The response of a list operation.
Fields§
§value: Vec<NotificationChannel>Results of the list operation.
next_link: Option<String>Link for next set of results.
Implementations§
Trait Implementations§
Source§impl Clone for NotificationChannelList
impl Clone for NotificationChannelList
Source§fn clone(&self) -> NotificationChannelList
fn clone(&self) -> NotificationChannelList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Continuable for NotificationChannelList
impl Continuable for NotificationChannelList
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for NotificationChannelList
impl Debug for NotificationChannelList
Source§impl Default for NotificationChannelList
impl Default for NotificationChannelList
Source§fn default() -> NotificationChannelList
fn default() -> NotificationChannelList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationChannelList
impl<'de> Deserialize<'de> for NotificationChannelList
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 NotificationChannelList
impl PartialEq for NotificationChannelList
Source§fn eq(&self, other: &NotificationChannelList) -> bool
fn eq(&self, other: &NotificationChannelList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotificationChannelList
impl Serialize for NotificationChannelList
impl StructuralPartialEq for NotificationChannelList
Auto Trait Implementations§
impl Freeze for NotificationChannelList
impl RefUnwindSafe for NotificationChannelList
impl Send for NotificationChannelList
impl Sync for NotificationChannelList
impl Unpin for NotificationChannelList
impl UnsafeUnpin for NotificationChannelList
impl UnwindSafe for NotificationChannelList
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