pub trait TryExportId<I, B> {
    type Error;

    // Required method
    fn try_export_id(&self, id: Id<I, B>) -> Result<Id, Self::Error>;
}
Expand description

Type that can turn an Id<I, B> into an Id.

Required Associated Types§

Required Methods§

source

fn try_export_id(&self, id: Id<I, B>) -> Result<Id, Self::Error>

Turns an Id<I, B> into an Id.

Implementors§