pub struct BatchMessageProgress {
pub batch_message_id: String,
pub status: BatchMessageStatus,
pub total_count: i32,
pub success_count: i32,
pub fail_count: i32,
pub read_count: i32,
}Expand description
批量消息进度信息
Fields§
§batch_message_id: String批量消息ID
status: BatchMessageStatus状态
total_count: i32总数
success_count: i32成功数
fail_count: i32失败数
read_count: i32已读数
Trait Implementations§
Source§impl Clone for BatchMessageProgress
impl Clone for BatchMessageProgress
Source§fn clone(&self) -> BatchMessageProgress
fn clone(&self) -> BatchMessageProgress
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 BatchMessageProgress
impl Debug for BatchMessageProgress
Source§impl<'de> Deserialize<'de> for BatchMessageProgress
impl<'de> Deserialize<'de> for BatchMessageProgress
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 BatchMessageProgress
impl RefUnwindSafe for BatchMessageProgress
impl Send for BatchMessageProgress
impl Sync for BatchMessageProgress
impl Unpin for BatchMessageProgress
impl UnwindSafe for BatchMessageProgress
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