[][src]Struct weave::DeltaInfo

pub struct DeltaInfo {
    pub name: String,
    pub number: usize,
    pub tags: BTreeMap<String, String>,
    pub time: DateTime<Utc>,
}

Information about a single delta.

Fields

name: String

A tag giving the name for this particular delta. Should be unique across all deltas.

number: usize

The delta number. A unique integer that identifies this delta in the woven data below.

tags: BTreeMap<String, String>

Arbitrary tags the user has asked to be stored with this delta.

time: DateTime<Utc>

A time stamp when this delta was added.

Trait Implementations

impl Clone for DeltaInfo[src]

impl Serialize for DeltaInfo[src]

impl<'de> Deserialize<'de> for DeltaInfo[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]