pub struct TriggerCollection {
pub value: Vec<Trigger>,
pub next_link: Option<String>,
}Expand description
The result of List triggers operation
Fields§
§value: Vec<Trigger>An array of triggers
next_link: Option<String>The continuation token.
Implementations§
Trait Implementations§
Source§impl Clone for TriggerCollection
impl Clone for TriggerCollection
Source§fn clone(&self) -> TriggerCollection
fn clone(&self) -> TriggerCollection
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 Continuable for TriggerCollection
impl Continuable for TriggerCollection
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for TriggerCollection
impl Debug for TriggerCollection
Source§impl<'de> Deserialize<'de> for TriggerCollection
impl<'de> Deserialize<'de> for TriggerCollection
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 TriggerCollection
impl PartialEq for TriggerCollection
Source§impl Serialize for TriggerCollection
impl Serialize for TriggerCollection
impl StructuralPartialEq for TriggerCollection
Auto Trait Implementations§
impl Freeze for TriggerCollection
impl RefUnwindSafe for TriggerCollection
impl Send for TriggerCollection
impl Sync for TriggerCollection
impl Unpin for TriggerCollection
impl UnwindSafe for TriggerCollection
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