pub struct TimelineResult {
pub tweets: Vec<Tweet>,
pub meta: Option<TimelineMeta>,
}Expand description
Result of a timeline retrieval
Fields§
§tweets: Vec<Tweet>§meta: Option<TimelineMeta>Trait Implementations§
Source§impl Clone for TimelineResult
impl Clone for TimelineResult
Source§fn clone(&self) -> TimelineResult
fn clone(&self) -> TimelineResult
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 TimelineResult
impl Debug for TimelineResult
Source§impl<'de> Deserialize<'de> for TimelineResult
impl<'de> Deserialize<'de> for TimelineResult
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
Auto Trait Implementations§
impl Freeze for TimelineResult
impl RefUnwindSafe for TimelineResult
impl Send for TimelineResult
impl Sync for TimelineResult
impl Unpin for TimelineResult
impl UnsafeUnpin for TimelineResult
impl UnwindSafe for TimelineResult
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