[][src]Struct pbd::dtc::MarkerIdentifier

pub struct MarkerIdentifier {
    pub data_id: String,
    pub index: usize,
    pub timestamp: u64,
    pub actor_id: String,
}

Represents a MarkerIdentifier

Fields

data_id: String

The unique identifier of the the data being tracked, (e.g.: order~clothing~iStore~15150)

index: usize

The sequanece number of the Marker in the Data Tracker Chain, (e.g.: 0,1,2,3)

timestamp: u64actor_id: String

The unique identifier of the Actor who touched the data, (e.g.: notifier~billing~receipt~email)

Methods

impl MarkerIdentifier[src]

pub fn serialize(&self) -> String[src]

Serializes the MarkerIdenifier.

#Example

extern crate pbd;

use pbd::dtc::Marker;

fn main() {
    let marker = Marker::new(1, 1578071239, "notifier~billing~receipt~email".to_string(), "order~clothing~iStore~15150".to_string(), "hash-12345".to_string());
     
    println!("{}", marker.identifier.serialize());
}

Trait Implementations

impl Clone for MarkerIdentifier[src]

impl Debug for MarkerIdentifier[src]

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

impl Serialize for MarkerIdentifier[src]

Auto Trait Implementations

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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,