pub struct UpstreamMsgItem {
pub ref_date: String,
pub msg_type: i32,
pub msg_user: i32,
pub msg_count: i32,
}Expand description
Upstream message data item.
Fields§
§ref_date: String§msg_type: i32§msg_user: i32§msg_count: i32Trait Implementations§
Source§impl Clone for UpstreamMsgItem
impl Clone for UpstreamMsgItem
Source§fn clone(&self) -> UpstreamMsgItem
fn clone(&self) -> UpstreamMsgItem
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 UpstreamMsgItem
impl Debug for UpstreamMsgItem
Source§impl<'de> Deserialize<'de> for UpstreamMsgItem
impl<'de> Deserialize<'de> for UpstreamMsgItem
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 UpstreamMsgItem
impl RefUnwindSafe for UpstreamMsgItem
impl Send for UpstreamMsgItem
impl Sync for UpstreamMsgItem
impl Unpin for UpstreamMsgItem
impl UnwindSafe for UpstreamMsgItem
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