Struct cdp::indexed_db::Key [] [src]

pub struct Key<'a> {
    pub ty: KeyType,
    pub number: Option<f64>,
    pub string: Option<Cow<'a, str>>,
    pub date: Option<f64>,
    pub array: Option<Vec<Box<Key<'a>>>>,
}

[Experimental] Key.

Fields

Key type.

Number value.

String value.

Date value.

Array value.

Trait Implementations

impl<'a> Clone for Key<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Key<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for Key<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.