pub struct GetBlogPostsResponse {
pub blogs: Vec<BlogPost>,
pub total: Option<u64>,
}Fields§
§blogs: Vec<BlogPost>§total: Option<u64>Trait Implementations§
Source§impl Clone for GetBlogPostsResponse
impl Clone for GetBlogPostsResponse
Source§fn clone(&self) -> GetBlogPostsResponse
fn clone(&self) -> GetBlogPostsResponse
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 GetBlogPostsResponse
impl Debug for GetBlogPostsResponse
Source§impl<'de> Deserialize<'de> for GetBlogPostsResponse
impl<'de> Deserialize<'de> for GetBlogPostsResponse
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 GetBlogPostsResponse
impl RefUnwindSafe for GetBlogPostsResponse
impl Send for GetBlogPostsResponse
impl Sync for GetBlogPostsResponse
impl Unpin for GetBlogPostsResponse
impl UnsafeUnpin for GetBlogPostsResponse
impl UnwindSafe for GetBlogPostsResponse
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