pub trait IntoParts<'c> {
type Error;
// Required method
fn into_parts(&'c self) -> Result<Parts<'_, '_, '_>, Self::Error>;
}
Expand description
Transform something into Jwt’s parts
Required Associated Types§
Required Methods§
Sourcefn into_parts(&'c self) -> Result<Parts<'_, '_, '_>, Self::Error>
fn into_parts(&'c self) -> Result<Parts<'_, '_, '_>, Self::Error>
Convert it!