pub struct FoundPublicPosts {
pub messages: Vec<Message>,
pub next_offset: String,
pub search_limits: Option<PublicPostSearchLimits>,
pub are_limits_exceeded: bool,
}Expand description
Contains a list of messages found by a public post search
Fields§
§messages: Vec<Message>List of found public posts
next_offset: StringThe offset for the next request. If empty, then there are no more results
search_limits: Option<PublicPostSearchLimits>Updated public post search limits after the query; repeated requests with the same query will be free; may be null if they didn’t change
are_limits_exceeded: boolTrue, if the query has failed because search limits are exceeded. In this case search_limits.daily_free_query_count will be equal to 0
Trait Implementations§
Source§impl Clone for FoundPublicPosts
impl Clone for FoundPublicPosts
Source§fn clone(&self) -> FoundPublicPosts
fn clone(&self) -> FoundPublicPosts
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 FoundPublicPosts
impl Debug for FoundPublicPosts
Source§impl Default for FoundPublicPosts
impl Default for FoundPublicPosts
Source§fn default() -> FoundPublicPosts
fn default() -> FoundPublicPosts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundPublicPosts
impl<'de> Deserialize<'de> for FoundPublicPosts
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 PartialEq for FoundPublicPosts
impl PartialEq for FoundPublicPosts
Source§impl Serialize for FoundPublicPosts
impl Serialize for FoundPublicPosts
impl StructuralPartialEq for FoundPublicPosts
Auto Trait Implementations§
impl Freeze for FoundPublicPosts
impl RefUnwindSafe for FoundPublicPosts
impl Send for FoundPublicPosts
impl Sync for FoundPublicPosts
impl Unpin for FoundPublicPosts
impl UnsafeUnpin for FoundPublicPosts
impl UnwindSafe for FoundPublicPosts
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