pub struct ReplyDetail {Show 18 fields
pub subject_id: u64,
pub root_id: u64,
pub source_id: u64,
pub target_id: u64,
pub reply_type: String,
pub business_id: u32,
pub business: String,
pub title: String,
pub desc: String,
pub uri: String,
pub native_uri: String,
pub root_reply_content: String,
pub source_content: String,
pub target_reply_content: String,
pub at_details: Vec<AtUserDetail>,
pub hide_reply_button: bool,
pub hide_like_button: bool,
pub like_state: u32,
}
Expand description
回复通知详情
Fields§
§subject_id: u64
§root_id: u64
§source_id: u64
§target_id: u64
§reply_type: String
§business_id: u32
§business: String
§title: String
§desc: String
§uri: String
§native_uri: String
§root_reply_content: String
§source_content: String
§target_reply_content: String
§at_details: Vec<AtUserDetail>
§like_state: u32
Trait Implementations§
Source§impl Clone for ReplyDetail
impl Clone for ReplyDetail
Source§fn clone(&self) -> ReplyDetail
fn clone(&self) -> ReplyDetail
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 ReplyDetail
impl Debug for ReplyDetail
Source§impl<'de> Deserialize<'de> for ReplyDetail
impl<'de> Deserialize<'de> for ReplyDetail
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 ReplyDetail
impl RefUnwindSafe for ReplyDetail
impl Send for ReplyDetail
impl Sync for ReplyDetail
impl Unpin for ReplyDetail
impl UnwindSafe for ReplyDetail
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