[][src]Trait bookkeeping::Metadata

pub trait Metadata: Clone {
    type Book;
    type Account;
    type Unit;
    type Move;
}

Implement this trait to specify the type of metadata for each of the bookkeeping entities.

Associated Types

type Book[src]

Metadata type for Book.

type Account[src]

Metadata type for Account.

type Unit[src]

Metadata type for Unit.

type Move[src]

Metadata type for Move.

Loading content...

Implementations on Foreign Types

impl<B, A, U, M> Metadata for (B, A, U, M) where
    B: Clone,
    A: Clone,
    U: Clone,
    M: Clone
[src]

type Book = B

type Account = A

type Unit = U

type Move = M

Loading content...

Implementors

Loading content...