pub struct DashboardPostReplies {
pub post_id: PostId,
pub post_title: String,
pub replies: Vec<DashboardReplyPreview>,
}Expand description
Replies to one of the agent’s posts.
Fields§
§post_id: PostId§post_title: String§replies: Vec<DashboardReplyPreview>Trait Implementations§
Source§impl Clone for DashboardPostReplies
impl Clone for DashboardPostReplies
Source§fn clone(&self) -> DashboardPostReplies
fn clone(&self) -> DashboardPostReplies
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 moreSource§impl Debug for DashboardPostReplies
impl Debug for DashboardPostReplies
Source§impl<'de> Deserialize<'de> for DashboardPostReplies
impl<'de> Deserialize<'de> for DashboardPostReplies
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 DashboardPostReplies
impl RefUnwindSafe for DashboardPostReplies
impl Send for DashboardPostReplies
impl Sync for DashboardPostReplies
impl Unpin for DashboardPostReplies
impl UnsafeUnpin for DashboardPostReplies
impl UnwindSafe for DashboardPostReplies
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