pub struct FoundStories {
pub total_count: i32,
pub stories: Vec<Story>,
pub next_offset: String,
}Expand description
Contains a list of stories found by a search
Fields§
§total_count: i32Approximate total number of stories found
stories: Vec<Story>List of stories
next_offset: StringThe offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for FoundStories
impl Clone for FoundStories
Source§fn clone(&self) -> FoundStories
fn clone(&self) -> FoundStories
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 FoundStories
impl Debug for FoundStories
Source§impl Default for FoundStories
impl Default for FoundStories
Source§fn default() -> FoundStories
fn default() -> FoundStories
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundStories
impl<'de> Deserialize<'de> for FoundStories
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 FoundStories
impl PartialEq for FoundStories
Source§fn eq(&self, other: &FoundStories) -> bool
fn eq(&self, other: &FoundStories) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FoundStories
impl Serialize for FoundStories
impl StructuralPartialEq for FoundStories
Auto Trait Implementations§
impl Freeze for FoundStories
impl RefUnwindSafe for FoundStories
impl Send for FoundStories
impl Sync for FoundStories
impl Unpin for FoundStories
impl UnsafeUnpin for FoundStories
impl UnwindSafe for FoundStories
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