Struct pot::ser::SymbolMap

source ·
pub struct SymbolMap { /* private fields */ }
Expand description

A list of previously serialized symbols.

Implementations§

source§

impl SymbolMap

source

pub const fn new() -> Self

Returns a new, empty symbol map.

source

pub fn serializer_for<W: WriteBytesExt>( &mut self, output: W ) -> Result<Serializer<'_, W>>

Returns a serializer that writes into output and persists symbols into self.

source

pub fn serialize_to<T, W>(&mut self, writer: W, value: &T) -> Result<()>where W: Write, T: Serialize,

Serializes value into writer while persisting symbols into self.

source

pub fn serialize_to_vec<T>(&mut self, value: &T) -> Result<Vec<u8>>where T: Serialize,

Serializes value into a new Vec<u8> while persisting symbols into self.

source

pub fn insert(&mut self, symbol: &str) -> bool

Inserts symbol into this map.

Returns true if this symbol had not previously been registered. Returns false if the symbol was already included in the map.

source

pub fn len(&self) -> usize

Returns the number of entries in this map.

source

pub fn is_empty(&self) -> bool

Returns true if the map has no entries.

source

pub fn populate_from<T>( &mut self, value: &T ) -> Result<usize, SymbolMapPopulationError>where T: Serialize,

Adds all symbols encountered in value.

Returns the number of symbols added.

Due to how serde works, this function can only encounter symbols that are being used. For example, if T is an enum, only variant being passed in will have its name, and additional calls for each variant will be needed to ensure every symbol is added.

Trait Implementations§

source§

impl Debug for SymbolMap

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SymbolMap

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for SymbolMap

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for SymbolMap

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,