pub struct ObservationData {
pub data: Vec<Vec<f32>>,
pub data_type: ObservationType,
}
Expand description
All observation of every test from https://gitlab.com/forestry-operator-digital-twin/data
Fields§
§data: Vec<Vec<f32>>
§data_type: ObservationType
Trait Implementations§
Source§impl Clone for ObservationData
impl Clone for ObservationData
Source§fn clone(&self) -> ObservationData
fn clone(&self) -> ObservationData
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 moreSource§impl<'de> Deserialize<'de> for ObservationData
impl<'de> Deserialize<'de> for ObservationData
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
Auto Trait Implementations§
impl Freeze for ObservationData
impl RefUnwindSafe for ObservationData
impl Send for ObservationData
impl Sync for ObservationData
impl Unpin for ObservationData
impl UnwindSafe for ObservationData
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