pub struct ListTriggersResponse {
pub next_page_token: Option<String>,
pub triggers: Option<Vec<Trigger>>,
pub unreachable: Option<Vec<String>>,
}Expand description
The response message for the ListTriggers method.
§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).
- locations triggers list projects (response)
Fields§
§next_page_token: Option<String>A page token that can be sent to ListTriggers to request the next page. If this is empty, then there are no more pages.
triggers: Option<Vec<Trigger>>The requested triggers, up to the number specified in page_size.
unreachable: Option<Vec<String>>Unreachable resources, if any.
Trait Implementations§
Source§impl Clone for ListTriggersResponse
impl Clone for ListTriggersResponse
Source§fn clone(&self) -> ListTriggersResponse
fn clone(&self) -> ListTriggersResponse
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 Debug for ListTriggersResponse
impl Debug for ListTriggersResponse
Source§impl Default for ListTriggersResponse
impl Default for ListTriggersResponse
Source§fn default() -> ListTriggersResponse
fn default() -> ListTriggersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTriggersResponse
impl<'de> Deserialize<'de> for ListTriggersResponse
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 ListTriggersResponse
Auto Trait Implementations§
impl Freeze for ListTriggersResponse
impl RefUnwindSafe for ListTriggersResponse
impl Send for ListTriggersResponse
impl Sync for ListTriggersResponse
impl Unpin for ListTriggersResponse
impl UnsafeUnpin for ListTriggersResponse
impl UnwindSafe for ListTriggersResponse
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