pub struct WebhookRotateSecretPayload {
pub last_sync_id: Option<f64>,
pub success: Option<bool>,
pub secret: Option<String>,
}Fields§
§last_sync_id: Option<f64>The identifier of the last sync operation.
success: Option<bool>Whether the operation was successful.
secret: Option<String>The new webhook signing secret.
Trait Implementations§
Source§impl Clone for WebhookRotateSecretPayload
impl Clone for WebhookRotateSecretPayload
Source§fn clone(&self) -> WebhookRotateSecretPayload
fn clone(&self) -> WebhookRotateSecretPayload
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 WebhookRotateSecretPayload
impl Debug for WebhookRotateSecretPayload
Source§impl Default for WebhookRotateSecretPayload
impl Default for WebhookRotateSecretPayload
Source§fn default() -> WebhookRotateSecretPayload
fn default() -> WebhookRotateSecretPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookRotateSecretPayloadwhere
WebhookRotateSecretPayload: Default,
impl<'de> Deserialize<'de> for WebhookRotateSecretPayloadwhere
WebhookRotateSecretPayload: Default,
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
Auto Trait Implementations§
impl Freeze for WebhookRotateSecretPayload
impl RefUnwindSafe for WebhookRotateSecretPayload
impl Send for WebhookRotateSecretPayload
impl Sync for WebhookRotateSecretPayload
impl Unpin for WebhookRotateSecretPayload
impl UnwindSafe for WebhookRotateSecretPayload
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