pub struct TweetsMeta {
pub result_count: usize,
pub newest_id: Option<String>,
pub oldest_id: Option<String>,
pub next_token: Option<String>,
pub previous_token: Option<String>,
}Fields§
§result_count: usize§newest_id: Option<String>§oldest_id: Option<String>§next_token: Option<String>§previous_token: Option<String>Trait Implementations§
Source§impl Clone for TweetsMeta
impl Clone for TweetsMeta
Source§fn clone(&self) -> TweetsMeta
fn clone(&self) -> TweetsMeta
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 TweetsMeta
impl Debug for TweetsMeta
Source§impl<'de> Deserialize<'de> for TweetsMeta
impl<'de> Deserialize<'de> for TweetsMeta
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 PaginationMeta for TweetsMeta
impl PaginationMeta for TweetsMeta
fn next_token(&self) -> Option<&str>
fn previous_token(&self) -> Option<&str>
Auto Trait Implementations§
impl Freeze for TweetsMeta
impl RefUnwindSafe for TweetsMeta
impl Send for TweetsMeta
impl Sync for TweetsMeta
impl Unpin for TweetsMeta
impl UnwindSafe for TweetsMeta
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