Struct SerializingFieldVisitor

Source
pub struct SerializingFieldVisitor<'a, F, S, E> { /* private fields */ }

Trait Implementations§

Source§

impl<'a, S: SerializeMap, F: FnMut(&'static str) -> bool> LogFieldReceiver for SerializingFieldVisitor<'a, F, S, S::Error>

Source§

fn add_field<V: ?Sized + Serialize>(&mut self, field: &'static str, value: &V)

Source§

impl<'a, F: FnMut(&'static str) -> bool, S: SerializeMap> Visit for SerializingFieldVisitor<'a, F, S, S::Error>

Source§

fn record_f64(&mut self, field: &Field, value: f64)

Visit a double-precision floating point value.
Source§

fn record_i64(&mut self, field: &Field, value: i64)

Visit a signed 64-bit integer value.
Source§

fn record_u64(&mut self, field: &Field, value: u64)

Visit an unsigned 64-bit integer value.
Source§

fn record_bool(&mut self, field: &Field, value: bool)

Visit a boolean value.
Source§

fn record_str(&mut self, field: &Field, value: &str)

Visit a string value.
Source§

fn record_error(&mut self, field: &Field, value: &(dyn Error + 'static))

Records a type implementing Error. Read more
Source§

fn record_debug(&mut self, field: &Field, value: &dyn Debug)

Visit a value implementing fmt::Debug.
Source§

fn record_i128(&mut self, field: &Field, value: i128)

Visit a signed 128-bit integer value.
Source§

fn record_u128(&mut self, field: &Field, value: u128)

Visit an unsigned 128-bit integer value.
Source§

fn record_bytes(&mut self, field: &Field, value: &[u8])

Visit a byte slice.

Auto Trait Implementations§

§

impl<'a, F, S, E> Freeze for SerializingFieldVisitor<'a, F, S, E>
where F: Freeze, E: Freeze,

§

impl<'a, F, S, E> RefUnwindSafe for SerializingFieldVisitor<'a, F, S, E>

§

impl<'a, F, S, E> Send for SerializingFieldVisitor<'a, F, S, E>
where F: Send, S: Send, E: Send,

§

impl<'a, F, S, E> Sync for SerializingFieldVisitor<'a, F, S, E>
where F: Sync, S: Sync, E: Sync,

§

impl<'a, F, S, E> Unpin for SerializingFieldVisitor<'a, F, S, E>
where F: Unpin, E: Unpin,

§

impl<'a, F, S, E> !UnwindSafe for SerializingFieldVisitor<'a, F, S, E>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.