pub trait Party {
    type Id: Send + 'static;

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

Represents a Party in the Ocpi Protocol.

Required Associated Types

Required Methods

Implementors