pub struct PendingNotifWebhook {
pub agent_id: String,
pub notification_id: i64,
pub event_type: String,
pub title: String,
pub body: Option<String>,
}Expand description
Carries information about a newly-inserted notification that may need webhook delivery.
Fields§
§agent_id: String§notification_id: i64§event_type: String§title: String§body: Option<String>Trait Implementations§
Source§impl Clone for PendingNotifWebhook
impl Clone for PendingNotifWebhook
Source§fn clone(&self) -> PendingNotifWebhook
fn clone(&self) -> PendingNotifWebhook
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 moreAuto Trait Implementations§
impl Freeze for PendingNotifWebhook
impl RefUnwindSafe for PendingNotifWebhook
impl Send for PendingNotifWebhook
impl Sync for PendingNotifWebhook
impl Unpin for PendingNotifWebhook
impl UnsafeUnpin for PendingNotifWebhook
impl UnwindSafe for PendingNotifWebhook
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