pub struct ContainerForWebhookIds {
pub webhook_ids: Vec<i64>,
}
Expand description
ContainerForWebhookIds : Container for a list of webhook IDs.
Fields§
§webhook_ids: Vec<i64>
A list of webhook IDs.
Implementations§
Source§impl ContainerForWebhookIds
impl ContainerForWebhookIds
Sourcepub fn new(webhook_ids: Vec<i64>) -> ContainerForWebhookIds
pub fn new(webhook_ids: Vec<i64>) -> ContainerForWebhookIds
Container for a list of webhook IDs.
Trait Implementations§
Source§impl Clone for ContainerForWebhookIds
impl Clone for ContainerForWebhookIds
Source§fn clone(&self) -> ContainerForWebhookIds
fn clone(&self) -> ContainerForWebhookIds
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 ContainerForWebhookIds
impl Debug for ContainerForWebhookIds
Source§impl Default for ContainerForWebhookIds
impl Default for ContainerForWebhookIds
Source§fn default() -> ContainerForWebhookIds
fn default() -> ContainerForWebhookIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerForWebhookIds
impl<'de> Deserialize<'de> for ContainerForWebhookIds
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 ContainerForWebhookIds
impl PartialEq for ContainerForWebhookIds
Source§impl Serialize for ContainerForWebhookIds
impl Serialize for ContainerForWebhookIds
impl StructuralPartialEq for ContainerForWebhookIds
Auto Trait Implementations§
impl Freeze for ContainerForWebhookIds
impl RefUnwindSafe for ContainerForWebhookIds
impl Send for ContainerForWebhookIds
impl Sync for ContainerForWebhookIds
impl Unpin for ContainerForWebhookIds
impl UnwindSafe for ContainerForWebhookIds
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