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: Option<Key<'a>>
Lower bound.
upper: Option<Key<'a>>
Upper bound.
lower_open: bool
If true lower bound is open.
upper_open: bool
If true upper bound is open.
Trait Implementations
impl<'a> Clone for KeyRange<'a>
[src]
fn clone(&self) -> KeyRange<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more