pub struct SyntheticDataError {
pub timestamp: i64,
pub error: String,
}Expand description
Synthetic data error.
Fields§
§timestamp: i64Timestamp in milliseconds since epoch.
error: StringError that occured when computing synthetic data point.
Trait Implementations§
Source§impl Clone for SyntheticDataError
impl Clone for SyntheticDataError
Source§fn clone(&self) -> SyntheticDataError
fn clone(&self) -> SyntheticDataError
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 Debug for SyntheticDataError
impl Debug for SyntheticDataError
Source§impl<'de> Deserialize<'de> for SyntheticDataError
impl<'de> Deserialize<'de> for SyntheticDataError
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 SyntheticDataError
impl RefUnwindSafe for SyntheticDataError
impl Send for SyntheticDataError
impl Sync for SyntheticDataError
impl Unpin for SyntheticDataError
impl UnwindSafe for SyntheticDataError
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