Struct net::wire::PrettyPrinter  
pub struct PrettyPrinter<'a, T>where
    T: PrettyPrint,{ /* private fields */ }Expand description
Wrapper for using a PrettyPrint where a Display is expected.
Implementations§
§impl<'a, T> PrettyPrinter<'a, T>where
    T: PrettyPrint,
 
impl<'a, T> PrettyPrinter<'a, T>where T: PrettyPrint,
pub fn new(
    prefix: &'static str,
    buffer: &'a dyn AsRef<[u8]>
) -> PrettyPrinter<'a, T>
pub fn new( prefix: &'static str, buffer: &'a dyn AsRef<[u8]> ) -> PrettyPrinter<'a, T>
Format the listing with the recorded parameters when Display::fmt is called.
§impl<'a, T> PrettyPrinter<'a, T>where
    T: PrettyPrint + AsRef<[u8]>,
 
impl<'a, T> PrettyPrinter<'a, T>where T: PrettyPrint + AsRef<[u8]>,
pub fn print(printable: &'a T) -> PrettyPrinter<'a, T>
pub fn print(printable: &'a T) -> PrettyPrinter<'a, T>
Create a PrettyPrinter which prints the given object.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for PrettyPrinter<'a, T>
impl<'a, T> !Send for PrettyPrinter<'a, T>
impl<'a, T> !Sync for PrettyPrinter<'a, T>
impl<'a, T> Unpin for PrettyPrinter<'a, T>where T: Unpin,
impl<'a, T> !UnwindSafe for PrettyPrinter<'a, 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