pub struct AnalyzeQuery {
pub alpha: Option<f64>,
pub days: Option<i32>,
pub end: Option<String>,
pub id: Option<String>,
pub start: Option<String>,
}Fields§
§alpha: Option<f64>Alpha overrides the 0.05 two-tailed significance threshold when it lies strictly between 0 and 1; anything else leaves the default in place.
days: Option<i32>Days is how far back to read when no start is given: 1 to 365, 30 by default. A value outside that range leaves the default in place.
end: Option<String>End is the window’s exclusive end in RFC3339, defaulting to now.
id: Option<String>ID is the experiment the URL names.
start: Option<String>Start is the window’s inclusive start in RFC3339. Given, it wins over days.
Implementations§
Source§impl AnalyzeQuery
impl AnalyzeQuery
pub fn new() -> AnalyzeQuery
Trait Implementations§
Source§impl Clone for AnalyzeQuery
impl Clone for AnalyzeQuery
Source§fn clone(&self) -> AnalyzeQuery
fn clone(&self) -> AnalyzeQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnalyzeQuery
impl Debug for AnalyzeQuery
Source§impl Default for AnalyzeQuery
impl Default for AnalyzeQuery
Source§fn default() -> AnalyzeQuery
fn default() -> AnalyzeQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeQuery
impl<'de> Deserialize<'de> for AnalyzeQuery
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
Source§impl PartialEq for AnalyzeQuery
impl PartialEq for AnalyzeQuery
Source§impl Serialize for AnalyzeQuery
impl Serialize for AnalyzeQuery
impl StructuralPartialEq for AnalyzeQuery
Auto Trait Implementations§
impl Freeze for AnalyzeQuery
impl RefUnwindSafe for AnalyzeQuery
impl Send for AnalyzeQuery
impl Sync for AnalyzeQuery
impl Unpin for AnalyzeQuery
impl UnsafeUnpin for AnalyzeQuery
impl UnwindSafe for AnalyzeQuery
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