pub struct TwitterResults {
pub cursor: String,
pub guest_token: String,
pub tweets: Option<Vec<Tweet>>,
pub users: Option<Vec<User>>,
}
Fields§
§cursor: String
§guest_token: String
§tweets: Option<Vec<Tweet>>
§users: Option<Vec<User>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TwitterResults
impl RefUnwindSafe for TwitterResults
impl Send for TwitterResults
impl Sync for TwitterResults
impl Unpin for TwitterResults
impl UnwindSafe for TwitterResults
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