pub struct QueryTweetsResponse {
pub tweets: Vec<Tweet>,
pub next: Option<String>,
pub previous: Option<String>,
}Fields§
§tweets: Vec<Tweet>§next: Option<String>§previous: Option<String>Trait Implementations§
Source§impl Debug for QueryTweetsResponse
impl Debug for QueryTweetsResponse
Source§impl<'de> Deserialize<'de> for QueryTweetsResponse
impl<'de> Deserialize<'de> for QueryTweetsResponse
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 QueryTweetsResponse
impl RefUnwindSafe for QueryTweetsResponse
impl Send for QueryTweetsResponse
impl Sync for QueryTweetsResponse
impl Unpin for QueryTweetsResponse
impl UnwindSafe for QueryTweetsResponse
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