#[non_exhaustive]pub struct ListHooksResponse {
pub hooks: Vec<Hook>,
pub next_page_token: String,
/* private fields */
}Expand description
ListHooksResponse is response to list hooks.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.hooks: Vec<Hook>The list of hooks.
next_page_token: StringA token identifying a page of results the server should return.
Implementations§
Source§impl ListHooksResponse
impl ListHooksResponse
Trait Implementations§
Source§impl Clone for ListHooksResponse
impl Clone for ListHooksResponse
Source§fn clone(&self) -> ListHooksResponse
fn clone(&self) -> ListHooksResponse
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 ListHooksResponse
impl Debug for ListHooksResponse
Source§impl Default for ListHooksResponse
impl Default for ListHooksResponse
Source§fn default() -> ListHooksResponse
fn default() -> ListHooksResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListHooksResponse
impl Message for ListHooksResponse
Source§impl PartialEq for ListHooksResponse
impl PartialEq for ListHooksResponse
impl StructuralPartialEq for ListHooksResponse
Auto Trait Implementations§
impl Freeze for ListHooksResponse
impl RefUnwindSafe for ListHooksResponse
impl Send for ListHooksResponse
impl Sync for ListHooksResponse
impl Unpin for ListHooksResponse
impl UnwindSafe for ListHooksResponse
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