pub struct SignedToken<P, KI, S> { /* private fields */ }Expand description
A JWS token with an included cryptographic signature.
Trait Implementations§
Source§impl<P, KI, S> AcmeFormat for SignedToken<P, KI, S>
impl<P, KI, S> AcmeFormat for SignedToken<P, KI, S>
Source§fn fmt<W: Write>(&self, f: &mut IndentWriter<'_, W>) -> Result
fn fmt<W: Write>(&self, f: &mut IndentWriter<'_, W>) -> Result
Write this format at the current indentation.
Source§fn fmt_indented<W: Write>(&self, f: &mut IndentWriter<'_, W>) -> Result
fn fmt_indented<W: Write>(&self, f: &mut IndentWriter<'_, W>) -> Result
Write this format at an indented level one greater than the current level. Read more
Source§fn fmt_indented_skip_first<W: Write>(
&self,
f: &mut IndentWriter<'_, W>,
) -> Result
fn fmt_indented_skip_first<W: Write>( &self, f: &mut IndentWriter<'_, W>, ) -> Result
Write this format at an indented level one greater than the current level,
but don’t indent the first line.
Source§fn formatted(&self) -> AcmeFormatted<'_, Self>
fn formatted(&self) -> AcmeFormatted<'_, Self>
Return a formatting proxy which will use the ACME format when used with
std::fmt::Display.Auto Trait Implementations§
impl<P, KI, S> Freeze for SignedToken<P, KI, S>
impl<P, KI, S> RefUnwindSafe for SignedToken<P, KI, S>
impl<P, KI, S> Send for SignedToken<P, KI, S>
impl<P, KI, S> Sync for SignedToken<P, KI, S>
impl<P, KI, S> Unpin for SignedToken<P, KI, S>
impl<P, KI, S> UnwindSafe for SignedToken<P, KI, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more