pub struct ListLocalPostsResponse {
pub local_posts: Option<Vec<LocalPost>>,
pub next_page_token: Option<String>,
}Expand description
Response message for ListLocalPosts
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations local posts list accounts (response)
Fields§
§local_posts: Option<Vec<LocalPost>>The returned list of local posts.
next_page_token: Option<String>If there are more local posts than the requested page size, then this field
is populated with a token to fetch the next page of local posts on a
subsequent call to ListLocalPosts.
Trait Implementations§
Source§impl Clone for ListLocalPostsResponse
impl Clone for ListLocalPostsResponse
Source§fn clone(&self) -> ListLocalPostsResponse
fn clone(&self) -> ListLocalPostsResponse
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 ListLocalPostsResponse
impl Debug for ListLocalPostsResponse
Source§impl Default for ListLocalPostsResponse
impl Default for ListLocalPostsResponse
Source§fn default() -> ListLocalPostsResponse
fn default() -> ListLocalPostsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListLocalPostsResponse
impl<'de> Deserialize<'de> for ListLocalPostsResponse
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 ListLocalPostsResponse
impl Serialize for ListLocalPostsResponse
impl ResponseResult for ListLocalPostsResponse
Auto Trait Implementations§
impl Freeze for ListLocalPostsResponse
impl RefUnwindSafe for ListLocalPostsResponse
impl Send for ListLocalPostsResponse
impl Sync for ListLocalPostsResponse
impl Unpin for ListLocalPostsResponse
impl UnwindSafe for ListLocalPostsResponse
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