pub struct ListResponseOperationalWebhookEndpointOut {
pub data: Vec<OperationalWebhookEndpointOut>,
pub done: bool,
pub iterator: Option<String>,
pub prev_iterator: Option<String>,
}
Fields§
§data: Vec<OperationalWebhookEndpointOut>
§done: bool
§iterator: Option<String>
§prev_iterator: Option<String>
Implementations§
Source§impl ListResponseOperationalWebhookEndpointOut
impl ListResponseOperationalWebhookEndpointOut
pub fn new( data: Vec<OperationalWebhookEndpointOut>, done: bool, iterator: Option<String>, ) -> ListResponseOperationalWebhookEndpointOut
Trait Implementations§
Source§impl Clone for ListResponseOperationalWebhookEndpointOut
impl Clone for ListResponseOperationalWebhookEndpointOut
Source§fn clone(&self) -> ListResponseOperationalWebhookEndpointOut
fn clone(&self) -> ListResponseOperationalWebhookEndpointOut
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 Default for ListResponseOperationalWebhookEndpointOut
impl Default for ListResponseOperationalWebhookEndpointOut
Source§fn default() -> ListResponseOperationalWebhookEndpointOut
fn default() -> ListResponseOperationalWebhookEndpointOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListResponseOperationalWebhookEndpointOut
impl<'de> Deserialize<'de> for ListResponseOperationalWebhookEndpointOut
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 ListResponseOperationalWebhookEndpointOut
impl PartialEq for ListResponseOperationalWebhookEndpointOut
Source§fn eq(&self, other: &ListResponseOperationalWebhookEndpointOut) -> bool
fn eq(&self, other: &ListResponseOperationalWebhookEndpointOut) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListResponseOperationalWebhookEndpointOut
Auto Trait Implementations§
impl Freeze for ListResponseOperationalWebhookEndpointOut
impl RefUnwindSafe for ListResponseOperationalWebhookEndpointOut
impl Send for ListResponseOperationalWebhookEndpointOut
impl Sync for ListResponseOperationalWebhookEndpointOut
impl Unpin for ListResponseOperationalWebhookEndpointOut
impl UnwindSafe for ListResponseOperationalWebhookEndpointOut
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