Struct PointFmt
pub struct PointFmt<'o>(pub &'o dyn Point);
Expand description
A static packet formatter similar to DEFAULT_POINT without using ABE expressions.
Tuple Fields§
§0: &'o dyn Point
Implementations§
§impl PointFmt<'_>
impl PointFmt<'_>
pub fn to_str(&self, opts: FmtOpts) -> String
pub fn fmt_opts(&self, f: &mut dyn Write, opts: FmtOpts) -> Result<(), Error>
pub fn to_html(
&self,
f: &mut dyn Write,
opts: FmtOpts,
include: Option<&mut dyn FnMut(&dyn Point, &mut dyn Write) -> Result<(), Error>>,
) -> Result<(), Error>
pub fn to_html( &self, f: &mut dyn Write, opts: FmtOpts, include: Option<&mut dyn FnMut(&dyn Point, &mut dyn Write) -> Result<(), Error>>, ) -> Result<(), Error>
create a html fragment describing the packet
Its designed to be safe to paste into an html document and usable for most usecases. But it is verbose and somewhat opinionated. If it doesn’t fit your usecase, just build your own template.
pub fn to_json(&self, f: &mut dyn Write, opts: FmtOpts) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl<'o> Freeze for PointFmt<'o>
impl<'o> !RefUnwindSafe for PointFmt<'o>
impl<'o> !Send for PointFmt<'o>
impl<'o> !Sync for PointFmt<'o>
impl<'o> Unpin for PointFmt<'o>
impl<'o> !UnwindSafe for PointFmt<'o>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more