pub struct FormatSignedRequest<'r, T>(/* private fields */);Expand description
Formatting proxy to show a request in the style of RFC 8885
Trait Implementations§
Source§impl<'r, T> AcmeFormat for FormatSignedRequest<'r, T>where
T: Serialize,
impl<'r, T> AcmeFormat for FormatSignedRequest<'r, T>where
T: Serialize,
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<'r, T> Freeze for FormatSignedRequest<'r, T>
impl<'r, T> !RefUnwindSafe for FormatSignedRequest<'r, T>
impl<'r, T> !Send for FormatSignedRequest<'r, T>
impl<'r, T> !Sync for FormatSignedRequest<'r, T>
impl<'r, T> Unpin for FormatSignedRequest<'r, T>
impl<'r, T> !UnwindSafe for FormatSignedRequest<'r, T>
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