pub struct ContainerForRegisteredWebhooks {
pub webhook_registration_result: Option<Vec<RegisteredWebhook>>,
}Expand description
ContainerForRegisteredWebhooks : Container for a list of registered webhooks. Webhook details are returned in the same order as the request.
Fields§
§webhook_registration_result: Option<Vec<RegisteredWebhook>>A list of registered webhooks.
Implementations§
Source§impl ContainerForRegisteredWebhooks
impl ContainerForRegisteredWebhooks
Sourcepub fn new() -> ContainerForRegisteredWebhooks
pub fn new() -> ContainerForRegisteredWebhooks
Container for a list of registered webhooks. Webhook details are returned in the same order as the request.
Trait Implementations§
Source§impl Clone for ContainerForRegisteredWebhooks
impl Clone for ContainerForRegisteredWebhooks
Source§fn clone(&self) -> ContainerForRegisteredWebhooks
fn clone(&self) -> ContainerForRegisteredWebhooks
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<'de> Deserialize<'de> for ContainerForRegisteredWebhooks
impl<'de> Deserialize<'de> for ContainerForRegisteredWebhooks
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 ContainerForRegisteredWebhooks
impl PartialEq for ContainerForRegisteredWebhooks
Source§fn eq(&self, other: &ContainerForRegisteredWebhooks) -> bool
fn eq(&self, other: &ContainerForRegisteredWebhooks) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ContainerForRegisteredWebhooks
Auto Trait Implementations§
impl Freeze for ContainerForRegisteredWebhooks
impl RefUnwindSafe for ContainerForRegisteredWebhooks
impl Send for ContainerForRegisteredWebhooks
impl Sync for ContainerForRegisteredWebhooks
impl Unpin for ContainerForRegisteredWebhooks
impl UnwindSafe for ContainerForRegisteredWebhooks
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