[][src]Struct stdweb::web::StringMap

pub struct StringMap(_);

Used by the dataset HTML attribute to represent data for custom attributes added to elements.

(JavaScript docs)

Methods

impl StringMap[src]

pub fn get(&self, key: &str) -> Option<String>[src]

Returns a value corresponding to the key.

pub fn insert(&self, key: &str, value: &str) -> Result<(), TODO>[src]

Inserts a key-value pair into the map.

pub fn remove(&self, key: &str)[src]

Removes a key from the map.

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

Returns true if the map contains a value for the specified key.

Trait Implementations

impl JsSerialize for StringMap[src]

impl TryFrom<StringMap> for Reference[src]

type Error = Void

The type returned in the event of a conversion error.

impl TryFrom<Reference> for StringMap[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Reference> for StringMap[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for StringMap[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Value> for StringMap[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl InstanceOf for StringMap[src]

impl ReferenceType for StringMap[src]

impl From<StringMap> for Reference[src]

impl Eq for StringMap[src]

impl AsRef<Reference> for StringMap[src]

impl PartialEq<StringMap> for StringMap[src]

impl Clone for StringMap[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StringMap[src]

Auto Trait Implementations

impl Send for StringMap

impl Sync for StringMap

Blanket Implementations

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

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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