pub struct SentryAlertPayload {
pub action: Option<String>,
pub actor: Option<SentryActor>,
pub data: Option<SentryAlertData>,
}Expand description
Minimal Sentry issue alert webhook payload.
Fields§
§action: Option<String>§actor: Option<SentryActor>§data: Option<SentryAlertData>Trait Implementations§
Source§impl Clone for SentryAlertPayload
impl Clone for SentryAlertPayload
Source§fn clone(&self) -> SentryAlertPayload
fn clone(&self) -> SentryAlertPayload
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 SentryAlertPayload
impl Debug for SentryAlertPayload
Source§impl<'de> Deserialize<'de> for SentryAlertPayload
impl<'de> Deserialize<'de> for SentryAlertPayload
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 SentryAlertPayload
impl RefUnwindSafe for SentryAlertPayload
impl Send for SentryAlertPayload
impl Sync for SentryAlertPayload
impl Unpin for SentryAlertPayload
impl UnsafeUnpin for SentryAlertPayload
impl UnwindSafe for SentryAlertPayload
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