[][src]Struct transsecs::value_object::ValueObject

pub struct ValueObject {
    pub value: Value,
    pub timestamp: u64,
    pub quality: Quality,
}

ValueObject is the generic wrapper for an object returned from MIStudio. It will be a deep copy when created and thus has no reliance on the JVM.

Fields

value: Value

The wrapped value

timestamp: u64

The timestamp when the value was created

quality: Quality

A quality indicator

Trait Implementations

impl Clone for ValueObject[src]

impl Debug for ValueObject[src]

impl PartialEq<ValueObject> for ValueObject[src]

impl StructuralPartialEq for ValueObject[src]

Auto Trait Implementations

impl RefUnwindSafe for ValueObject

impl Send for ValueObject

impl Sync for ValueObject

impl Unpin for ValueObject

impl UnwindSafe for ValueObject

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Desc<'a, T> for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.