Trait bip_metainfo::IntoAccessor [] [src]

pub trait IntoAccessor {
    type Accessor: Accessor;
    fn into_accessor(self) -> Result<Self::Accessor>;
}

Trait for types convertible as a Result into some Accessor.

Associated Types

Concrete Accessor type that will be converted into.

Required Methods

Convert the type into some Accessor as a Result.

Implementors