pub struct NewsParams {
pub symbols: Option<String>,
pub start: Option<DateTime<Utc>>,
pub end: Option<DateTime<Utc>>,
pub sort: Option<String>,
pub include_content: Option<bool>,
pub exclude_contentless: Option<bool>,
pub page_token: Option<String>,
pub limit: Option<u32>,
}Fields§
§symbols: Option<String>§start: Option<DateTime<Utc>>§end: Option<DateTime<Utc>>§sort: Option<String>§include_content: Option<bool>§exclude_contentless: Option<bool>§page_token: Option<String>§limit: Option<u32>Trait Implementations§
Source§impl Debug for NewsParams
impl Debug for NewsParams
Source§impl<'de> Deserialize<'de> for NewsParams
impl<'de> Deserialize<'de> for NewsParams
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 NewsParams
impl RefUnwindSafe for NewsParams
impl Send for NewsParams
impl Sync for NewsParams
impl Unpin for NewsParams
impl UnwindSafe for NewsParams
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