pub struct SendNotifyItem {
pub status: SendNotifyStatus,
pub message: String,
pub code: String,
pub receive_time: Option<u64>,
pub send_time: Option<u64>,
pub send_id: String,
pub mobile: Option<String>,
}Fields§
§status: SendNotifyStatus§message: String§code: String§receive_time: Option<u64>§send_time: Option<u64>§send_id: String§mobile: Option<String>Trait Implementations§
Source§impl Clone for SendNotifyItem
impl Clone for SendNotifyItem
Source§fn clone(&self) -> SendNotifyItem
fn clone(&self) -> SendNotifyItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SendNotifyItem
impl RefUnwindSafe for SendNotifyItem
impl Send for SendNotifyItem
impl Sync for SendNotifyItem
impl Unpin for SendNotifyItem
impl UnsafeUnpin for SendNotifyItem
impl UnwindSafe for SendNotifyItem
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