pub struct PostReplies {
pub items: Option<Vec<Comment>>,
pub self_link: Option<String>,
pub total_items: Option<i64>,
}Expand description
The container of comments on this Post.
This type is not used in any activity, and only used as part of another schema.
Fields§
§items: Option<Vec<Comment>>The List of Comments for this Post.
self_link: Option<String>The URL of the comments on this post.
total_items: Option<i64>The count of comments on this post.
Trait Implementations§
Source§impl Clone for PostReplies
impl Clone for PostReplies
Source§fn clone(&self) -> PostReplies
fn clone(&self) -> PostReplies
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 PostReplies
impl Debug for PostReplies
Source§impl Default for PostReplies
impl Default for PostReplies
Source§fn default() -> PostReplies
fn default() -> PostReplies
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostReplies
impl<'de> Deserialize<'de> for PostReplies
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
Source§impl Serialize for PostReplies
impl Serialize for PostReplies
impl NestedType for PostReplies
impl Part for PostReplies
Auto Trait Implementations§
impl Freeze for PostReplies
impl RefUnwindSafe for PostReplies
impl Send for PostReplies
impl Sync for PostReplies
impl Unpin for PostReplies
impl UnwindSafe for PostReplies
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