pub struct PostWebhooksBodyWebhook {
pub collection: Option<String>,
pub name: Option<String>,
}
Fields§
§collection: Option<String>
The unique ID of the collection to trigger when calling this webhook.
name: Option<String>
The webhook’s name. On success, the system creates a new monitor with this name in the Monitors tab.
Trait Implementations§
Source§impl Clone for PostWebhooksBodyWebhook
impl Clone for PostWebhooksBodyWebhook
Source§fn clone(&self) -> PostWebhooksBodyWebhook
fn clone(&self) -> PostWebhooksBodyWebhook
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 PostWebhooksBodyWebhook
impl Debug for PostWebhooksBodyWebhook
Source§impl<'de> Deserialize<'de> for PostWebhooksBodyWebhook
impl<'de> Deserialize<'de> for PostWebhooksBodyWebhook
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 PostWebhooksBodyWebhook
impl PartialEq for PostWebhooksBodyWebhook
Source§impl Serialize for PostWebhooksBodyWebhook
impl Serialize for PostWebhooksBodyWebhook
impl StructuralPartialEq for PostWebhooksBodyWebhook
Auto Trait Implementations§
impl Freeze for PostWebhooksBodyWebhook
impl RefUnwindSafe for PostWebhooksBodyWebhook
impl Send for PostWebhooksBodyWebhook
impl Sync for PostWebhooksBodyWebhook
impl Unpin for PostWebhooksBodyWebhook
impl UnwindSafe for PostWebhooksBodyWebhook
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