pub struct Stories {
pub total_count: i32,
pub stories: Vec<Story>,
pub pinned_story_ids: Vec<i32>,
}
Expand description
Represents a list of stories
Fields§
§total_count: i32
Approximate total number of stories found
stories: Vec<Story>
The list of stories
pinned_story_ids: Vec<i32>
Identifiers of the pinned stories; returned only in getChatPostedToChatPageStories with from_story_id == 0
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stories
impl<'de> Deserialize<'de> for Stories
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 StructuralPartialEq for Stories
Auto Trait Implementations§
impl Freeze for Stories
impl RefUnwindSafe for Stories
impl Send for Stories
impl Sync for Stories
impl Unpin for Stories
impl UnwindSafe for Stories
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