[][src]Struct rant::RantMap

pub struct RantMap { /* fields omitted */ }

Represents Rant's map type, which stores a collection of key-value pairs. Map keys are always strings.

Implementations

impl RantMap[src]

pub fn new() -> Self[src]

pub fn raw_len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn proto(&self) -> Option<RantMapRef>[src]

pub fn set_proto(&mut self, proto: Option<RantMapRef>)[src]

pub fn raw_set(&mut self, key: &str, val: RantValue)[src]

pub fn raw_get<'a>(&'a self, key: &str) -> Option<&'a RantValue>[src]

pub fn raw_has_key(&self, key: &str) -> bool[src]

pub fn raw_keys(&self) -> RantList[src]

Trait Implementations

impl Debug for RantMap[src]

impl Default for RantMap[src]

Auto Trait Implementations

impl !RefUnwindSafe for RantMap

impl !Send for RantMap

impl !Sync for RantMap

impl Unpin for RantMap

impl !UnwindSafe for RantMap

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,