pub trait IntoLabel: Sized {
    // Required method
    fn into_label(self) -> ProtoResult<Label>;
}
Expand description

Conversion into a Label

Required Methods§

source

fn into_label(self) -> ProtoResult<Label>

Convert this into Label

Implementations on Foreign Types§

source§

impl<'a> IntoLabel for &'a [u8]

source§

impl IntoLabel for String

source§

impl IntoLabel for Vec<u8>

source§

impl<'a> IntoLabel for &'a str

Implementors§