pub struct AggregateQuestionResultsParams {
pub tenant_id: String,
pub question_id: Option<String>,
pub question_ids: Option<Vec<String>>,
pub url_id: Option<String>,
pub time_bucket: Option<AggregateTimeBucket>,
pub start_date: Option<String>,
pub force_recalculate: Option<bool>,
}Expand description
struct for passing parameters to the method aggregate_question_results
Fields§
§tenant_id: String§question_id: Option<String>§question_ids: Option<Vec<String>>§url_id: Option<String>§time_bucket: Option<AggregateTimeBucket>§start_date: Option<String>§force_recalculate: Option<bool>Trait Implementations§
Source§impl Clone for AggregateQuestionResultsParams
impl Clone for AggregateQuestionResultsParams
Source§fn clone(&self) -> AggregateQuestionResultsParams
fn clone(&self) -> AggregateQuestionResultsParams
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 AggregateQuestionResultsParams
impl RefUnwindSafe for AggregateQuestionResultsParams
impl Send for AggregateQuestionResultsParams
impl Sync for AggregateQuestionResultsParams
impl Unpin for AggregateQuestionResultsParams
impl UnwindSafe for AggregateQuestionResultsParams
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