pub struct UploadSampleParams<'a> {
pub device_id: &'a str,
pub device_type: &'a str,
pub sensors: Vec<Sensor>,
pub values: Vec<Vec<f64>>,
pub interval_ms: f64,
pub label: Option<String>,
pub category: &'a str,
}
Expand description
Parameters for uploading a sample
Fields§
§device_id: &'a str
Device identifier
device_type: &'a str
Type of device
sensors: Vec<Sensor>
List of sensors
values: Vec<Vec<f64>>
Sample values
interval_ms: f64
Interval in milliseconds
label: Option<String>
Optional label for the sample
category: &'a str
Category (training, testing, or anomaly)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for UploadSampleParams<'a>
impl<'a> RefUnwindSafe for UploadSampleParams<'a>
impl<'a> Send for UploadSampleParams<'a>
impl<'a> Sync for UploadSampleParams<'a>
impl<'a> Unpin for UploadSampleParams<'a>
impl<'a> UnwindSafe for UploadSampleParams<'a>
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