pub struct PostWebhooksResponseWebhook {
pub collection: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub uid: Option<String>,
pub webhook_url: Option<String>,
}
Fields§
§collection: Option<String>
The unique ID of the webhook’s associated collection.
id: Option<String>
The webhook’s ID.
name: Option<String>
The webhook’s name.
uid: Option<String>
The webhook’s unique ID.
webhook_url: Option<String>
The webhook’s URL.
Trait Implementations§
Source§impl Clone for PostWebhooksResponseWebhook
impl Clone for PostWebhooksResponseWebhook
Source§fn clone(&self) -> PostWebhooksResponseWebhook
fn clone(&self) -> PostWebhooksResponseWebhook
Returns a copy 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 PostWebhooksResponseWebhook
impl Debug for PostWebhooksResponseWebhook
Source§impl<'de> Deserialize<'de> for PostWebhooksResponseWebhook
impl<'de> Deserialize<'de> for PostWebhooksResponseWebhook
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 StructuralPartialEq for PostWebhooksResponseWebhook
Auto Trait Implementations§
impl Freeze for PostWebhooksResponseWebhook
impl RefUnwindSafe for PostWebhooksResponseWebhook
impl Send for PostWebhooksResponseWebhook
impl Sync for PostWebhooksResponseWebhook
impl Unpin for PostWebhooksResponseWebhook
impl UnwindSafe for PostWebhooksResponseWebhook
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