pub struct DeliveryAlert {
pub id: String,
pub category: DeliveryAlertCategory,
pub tier: DeliveryAlertTier,
pub task_id: String,
pub action: DeliveryAlertAction,
pub message: String,
}Fields§
§id: String§category: DeliveryAlertCategory§tier: DeliveryAlertTier§task_id: String§action: DeliveryAlertAction§message: StringTrait Implementations§
Source§impl Clone for DeliveryAlert
impl Clone for DeliveryAlert
Source§fn clone(&self) -> DeliveryAlert
fn clone(&self) -> DeliveryAlert
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 DeliveryAlert
impl Debug for DeliveryAlert
Source§impl Default for DeliveryAlert
impl Default for DeliveryAlert
Source§impl<'de> Deserialize<'de> for DeliveryAlert
impl<'de> Deserialize<'de> for DeliveryAlert
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 DeliveryAlert
impl PartialEq for DeliveryAlert
Source§impl Serialize for DeliveryAlert
impl Serialize for DeliveryAlert
impl Message for DeliveryAlert
impl StructuralPartialEq for DeliveryAlert
Auto Trait Implementations§
impl Freeze for DeliveryAlert
impl RefUnwindSafe for DeliveryAlert
impl Send for DeliveryAlert
impl Sync for DeliveryAlert
impl Unpin for DeliveryAlert
impl UnwindSafe for DeliveryAlert
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