pub struct FieldFn<F>(/* private fields */);
Available on crate features
fmt
and std
only.Expand description
A FormatFields
implementation that formats fields by calling a function
or closure.
Trait Implementations§
Source§impl<'a, F> MakeVisitor<Writer<'a>> for FieldFn<F>
impl<'a, F> MakeVisitor<Writer<'a>> for FieldFn<F>
Source§type Visitor = FieldFnVisitor<'a, F>
type Visitor = FieldFnVisitor<'a, F>
The visitor type produced by this
MakeVisitor
.Source§fn make_visitor(&self, writer: Writer<'a>) -> Self::Visitor
fn make_visitor(&self, writer: Writer<'a>) -> Self::Visitor
Make a new visitor for the provided
target
.Auto Trait Implementations§
impl<F> Freeze for FieldFn<F>where
F: Freeze,
impl<F> RefUnwindSafe for FieldFn<F>where
F: RefUnwindSafe,
impl<F> Send for FieldFn<F>where
F: Send,
impl<F> Sync for FieldFn<F>where
F: Sync,
impl<F> Unpin for FieldFn<F>where
F: Unpin,
impl<F> UnwindSafe for FieldFn<F>where
F: UnwindSafe,
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