pub struct BlogPosts {
pub items: Option<Vec<Post>>,
pub self_link: Option<String>,
pub total_items: Option<i32>,
}Expand description
The container of posts in this blog.
This type is not used in any activity, and only used as part of another schema.
Fields§
§items: Option<Vec<Post>>The List of Posts for this Blog.
self_link: Option<String>The URL of the container for posts in this blog.
total_items: Option<i32>The count of posts in this blog.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BlogPosts
impl<'de> Deserialize<'de> for BlogPosts
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
impl NestedType for BlogPosts
impl Part for BlogPosts
Auto Trait Implementations§
impl Freeze for BlogPosts
impl RefUnwindSafe for BlogPosts
impl Send for BlogPosts
impl Sync for BlogPosts
impl Unpin for BlogPosts
impl UnwindSafe for BlogPosts
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