logo
pub trait HasId {
    type Id: IdentityInterface;

    fn id(&self) -> Self::Id;
}
Expand description

Instance has an id.

Required Associated Types

Id of the node.

Required Methods

Get id.

Implementors