pub struct PostActivity {
pub topic_url: String,
pub topic_name: String,
pub posts: Vec<PostInfo>,
}Fields§
§topic_url: String§topic_name: String§posts: Vec<PostInfo>Trait Implementations§
Source§impl Clone for PostActivity
impl Clone for PostActivity
Source§fn clone(&self) -> PostActivity
fn clone(&self) -> PostActivity
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 PostActivity
impl Debug for PostActivity
Source§impl<'de> Deserialize<'de> for PostActivity
impl<'de> Deserialize<'de> for PostActivity
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 PostActivity
impl RefUnwindSafe for PostActivity
impl Send for PostActivity
impl Sync for PostActivity
impl Unpin for PostActivity
impl UnwindSafe for PostActivity
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