Struct cdp::indexed_db::KeyRange [] [src]

pub struct KeyRange<'a> {
    pub lower: Option<Key<'a>>,
    pub upper: Option<Key<'a>>,
    pub lower_open: bool,
    pub upper_open: bool,
}

[Experimental] Key range.

Fields

Lower bound.

Upper bound.

If true lower bound is open.

If true upper bound is open.

Trait Implementations

impl<'a> Clone for KeyRange<'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 KeyRange<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for KeyRange<'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 !=.