Struct sval::MapSlice

source ·
pub struct MapSlice<K, V>(/* private fields */);
Expand description

An adapter that streams a slice of key-value pairs as a map.

Implementations§

source§

impl<K, V> MapSlice<K, V>

source

pub const fn new<'a>(map: &'a [(K, V)]) -> &'a Self

Treat a slice of key-value pairs as a map.

source

pub const fn as_slice(&self) -> &[(K, V)]

Get a reference to the underlying slice.

Trait Implementations§

source§

impl<K, V> AsRef<[(K, V)]> for MapSlice<K, V>

source§

fn as_ref(&self) -> &[(K, V)]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<K: Debug, V: Debug> Debug for MapSlice<K, V>

source§

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

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

impl<K: Value, V: Value> Value for MapSlice<K, V>

source§

fn stream<'sval, S: Stream<'sval> + ?Sized>( &'sval self, stream: &mut S ) -> Result

Stream this value through a Stream.
source§

fn tag(&self) -> Option<Tag>

Get the tag of this value, if there is one.
source§

fn to_bool(&self) -> Option<bool>

Try convert this value into a boolean.
source§

fn to_f32(&self) -> Option<f32>

Try convert this value into a 32bit binary floating point number.
source§

fn to_f64(&self) -> Option<f64>

Try convert this value into a 64bit binary floating point number.
source§

fn to_i8(&self) -> Option<i8>

Try convert this value into a signed 8bit integer.
source§

fn to_i16(&self) -> Option<i16>

Try convert this value into a signed 16bit integer.
source§

fn to_i32(&self) -> Option<i32>

Try convert this value into a signed 32bit integer.
source§

fn to_i64(&self) -> Option<i64>

Try convert this value into a signed 64bit integer.
source§

fn to_i128(&self) -> Option<i128>

Try convert this value into a signed 128bit integer.
source§

fn to_u8(&self) -> Option<u8>

Try convert this value into an unsigned 8bit integer.
source§

fn to_u16(&self) -> Option<u16>

Try convert this value into an unsigned 16bit integer.
source§

fn to_u32(&self) -> Option<u32>

Try convert this value into an unsigned 32bit integer.
source§

fn to_u64(&self) -> Option<u64>

Try convert this value into an unsigned 64bit integer.
source§

fn to_u128(&self) -> Option<u128>

Try convert this value into an unsigned 128bit integer.
source§

fn to_text(&self) -> Option<&str>

Try convert this value into a text string.
source§

fn to_binary(&self) -> Option<&[u8]>

Try convert this value into a bitstring.

Auto Trait Implementations§

§

impl<K, V> Freeze for MapSlice<K, V>
where K: Freeze, V: Freeze,

§

impl<K, V> RefUnwindSafe for MapSlice<K, V>

§

impl<K, V> Send for MapSlice<K, V>
where K: Send, V: Send,

§

impl<K, V> !Sized for MapSlice<K, V>

§

impl<K, V> Sync for MapSlice<K, V>
where K: Sync, V: Sync,

§

impl<K, V> Unpin for MapSlice<K, V>
where K: Unpin, V: Unpin,

§

impl<K, V> UnwindSafe for MapSlice<K, V>
where K: UnwindSafe, V: UnwindSafe,

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