pub struct ExecuteAlgorithmRequestBodyJson {
pub num_outputs: Option<u32>,
pub input_data: Option<Vec<f64>>,
pub operation: Option<String>,
pub min_time_interval: Option<u32>,
pub attribute_field_names: Option<Vec<String>>,
pub end_time: Option<u32>,
pub aggregations: Option<Vec<Aggregation>>,
pub metrics: Option<Vec<Vec<f64>>>,
pub time_field_name: Option<String>,
pub start_time: Option<u32>,
pub index_name: Option<String>,
}Fields§
§num_outputs: Option<u32>The number of outputs.
input_data: Option<Vec<f64>>The input data.
operation: Option<String>The calculator operation.
min_time_interval: Option<u32>The minimum time interval.
attribute_field_names: Option<Vec<String>>The attribute field names
end_time: Option<u32>The end time.
aggregations: Option<Vec<Aggregation>>§metrics: Option<Vec<Vec<f64>>>The metrics input.
time_field_name: Option<String>The time field name.
start_time: Option<u32>The start time.
index_name: Option<String>The index name.
Implementations§
Trait Implementations§
Source§impl Clone for ExecuteAlgorithmRequestBodyJson
impl Clone for ExecuteAlgorithmRequestBodyJson
Source§fn clone(&self) -> ExecuteAlgorithmRequestBodyJson
fn clone(&self) -> ExecuteAlgorithmRequestBodyJson
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 Default for ExecuteAlgorithmRequestBodyJson
impl Default for ExecuteAlgorithmRequestBodyJson
Source§fn default() -> ExecuteAlgorithmRequestBodyJson
fn default() -> ExecuteAlgorithmRequestBodyJson
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecuteAlgorithmRequestBodyJson
impl<'de> Deserialize<'de> for ExecuteAlgorithmRequestBodyJson
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 ExecuteAlgorithmRequestBodyJson
impl PartialEq for ExecuteAlgorithmRequestBodyJson
Source§fn eq(&self, other: &ExecuteAlgorithmRequestBodyJson) -> bool
fn eq(&self, other: &ExecuteAlgorithmRequestBodyJson) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecuteAlgorithmRequestBodyJson
Auto Trait Implementations§
impl Freeze for ExecuteAlgorithmRequestBodyJson
impl RefUnwindSafe for ExecuteAlgorithmRequestBodyJson
impl Send for ExecuteAlgorithmRequestBodyJson
impl Sync for ExecuteAlgorithmRequestBodyJson
impl Unpin for ExecuteAlgorithmRequestBodyJson
impl UnsafeUnpin for ExecuteAlgorithmRequestBodyJson
impl UnwindSafe for ExecuteAlgorithmRequestBodyJson
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