pub struct GetMiscHotboardParams {
pub type_query: String,
pub time_query: Option<String>,
pub keyword_query: Option<String>,
pub time_start_query: Option<String>,
pub time_end_query: Option<String>,
pub limit_query: Option<String>,
pub sources_query: Option<String>,
}Fields§
§type_query: String§time_query: Option<String>§keyword_query: Option<String>§time_start_query: Option<String>§time_end_query: Option<String>§limit_query: Option<String>§sources_query: Option<String>Implementations§
Source§impl GetMiscHotboardParams
impl GetMiscHotboardParams
pub fn new(type_query: impl Into<String>) -> Self
pub fn time_query(self, value: impl Into<String>) -> Self
pub fn keyword_query(self, value: impl Into<String>) -> Self
pub fn time_start_query(self, value: impl Into<String>) -> Self
pub fn time_end_query(self, value: impl Into<String>) -> Self
pub fn limit_query(self, value: impl Into<String>) -> Self
pub fn sources_query(self, value: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for GetMiscHotboardParams
impl Clone for GetMiscHotboardParams
Source§fn clone(&self) -> GetMiscHotboardParams
fn clone(&self) -> GetMiscHotboardParams
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 moreAuto Trait Implementations§
impl Freeze for GetMiscHotboardParams
impl RefUnwindSafe for GetMiscHotboardParams
impl Send for GetMiscHotboardParams
impl Sync for GetMiscHotboardParams
impl Unpin for GetMiscHotboardParams
impl UnsafeUnpin for GetMiscHotboardParams
impl UnwindSafe for GetMiscHotboardParams
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