pub struct WebhookSecretRotation {
pub secret: String,
pub rotated_at: Option<String>,
}Expand description
Response from rotating a webhook secret.
Fields§
§secret: StringThe new webhook secret.
rotated_at: Option<String>Timestamp of the rotation.
Trait Implementations§
Source§impl Clone for WebhookSecretRotation
impl Clone for WebhookSecretRotation
Source§fn clone(&self) -> WebhookSecretRotation
fn clone(&self) -> WebhookSecretRotation
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 WebhookSecretRotation
impl Debug for WebhookSecretRotation
Source§impl<'de> Deserialize<'de> for WebhookSecretRotation
impl<'de> Deserialize<'de> for WebhookSecretRotation
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 WebhookSecretRotation
impl RefUnwindSafe for WebhookSecretRotation
impl Send for WebhookSecretRotation
impl Sync for WebhookSecretRotation
impl Unpin for WebhookSecretRotation
impl UnwindSafe for WebhookSecretRotation
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