pub struct EventDestinationList {
pub event_destinations: Vec<EventDestination>,
pub uri: String,
pub next_page_uri: Option<String>,
}
Fields§
§event_destinations: Vec<EventDestination>
The list of all Event Destinations on this account.
uri: String
URI of the Event Destinations list API resource.
next_page_uri: Option<String>
URI of the next page, or null if there is no next page.
Trait Implementations§
Source§impl Clone for EventDestinationList
impl Clone for EventDestinationList
Source§fn clone(&self) -> EventDestinationList
fn clone(&self) -> EventDestinationList
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 EventDestinationList
impl Debug for EventDestinationList
Source§impl Default for EventDestinationList
impl Default for EventDestinationList
Source§fn default() -> EventDestinationList
fn default() -> EventDestinationList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventDestinationList
impl<'de> Deserialize<'de> for EventDestinationList
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 Freeze for EventDestinationList
impl RefUnwindSafe for EventDestinationList
impl Send for EventDestinationList
impl Sync for EventDestinationList
impl Unpin for EventDestinationList
impl UnwindSafe for EventDestinationList
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