Trait libjwt::IntoParts [] [src]

pub trait IntoParts<'c> {
    type Error;
    fn into_parts(&'c self) -> Result<Parts, Self::Error>;
}

Transform something into Jwt's parts

Associated Types

Error type from a convertion

Required Methods

Convert it!

Implementors