Struct argdata::values::Map[][src]

pub struct Map<'d, T: 'd> { /* fields omitted */ }

Methods

impl<'d, T> Map<'d, T> where
    T: MapContainer,
    <T as MapContainer>::Key: Argdata<'d>,
    <T as MapContainer>::Value: Argdata<'d>, 
[src]

Trait Implementations

impl<'d, T: Clone + 'd> Clone for Map<'d, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'d, T: Copy + 'd> Copy for Map<'d, T>
[src]

impl<'d, T: Debug + 'd> Debug for Map<'d, T>
[src]

Formats the value using the given formatter. Read more

impl<'d, T> Argdata<'d> for Map<'d, T> where
    T: MapContainer,
    <T as MapContainer>::Key: Argdata<'d>,
    <T as MapContainer>::Value: Argdata<'d>, 
[src]

Read the value.

The number of bytes that self.serialize() will write.

Serialize the argdata to the given writer. Read more

Read the type of the value.

Check if the value is null.

Check if the value is a binary blob, and read it if it is.

Check if the value is a boolean, and read it if it is.

Check if the value is a file descriptor, and return it if it is. Read more

Check if the value is a float, and read it if it is.

Check if the value is an integer, and read it if it is. Read more

Check if the value is a map, and get access to it if it is.

Check if the value is a seq, and get access to it if it is.

Check if the value is a string, and read it if it is. Read more

Check if the value is a timestamp, and read it if it is.

impl<'d, T> Map<'d> for Map<'d, T> where
    T: MapContainer,
    <T as MapContainer>::Key: Argdata<'d>,
    <T as MapContainer>::Value: Argdata<'d>, 
[src]

Iterate to the next key-value pair, returning None if the end is reached. Read more

Auto Trait Implementations

impl<'d, T> Send for Map<'d, T> where
    T: Sync

impl<'d, T> Sync for Map<'d, T> where
    T: Sync