Enum pliantdb_core::connection::QueryKey [−][src]
Filters a View
by key.
Variants
Matches all entries with the key provided.
Range(Range<K>)
Matches all entires with keys in the range provided.
Multiple(Vec<K>)
Matches all entries that have keys that are included in the set provided.
Implementations
impl<K: Key> QueryKey<K>
[src]
pub fn serialized(&self) -> Result<QueryKey<Vec<u8>>, Error>
[src]
Converts this key to a serialized format using the Key
trait.
impl QueryKey<Vec<u8>>
[src]
pub fn deserialized<K: Key>(&self) -> Result<QueryKey<K>, Error>
[src]
Deserializes the bytes into K
via the Key
trait.
Trait Implementations
impl<K: Clone> Clone for QueryKey<K>
[src]
impl<K: Debug> Debug for QueryKey<K>
[src]
impl<'de, K> Deserialize<'de> for QueryKey<K> where
K: Deserialize<'de>,
[src]
K: Deserialize<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl<K> Serialize for QueryKey<K> where
K: Serialize,
[src]
K: Serialize,
Auto Trait Implementations
impl<K> RefUnwindSafe for QueryKey<K> where
K: RefUnwindSafe,
K: RefUnwindSafe,
impl<K> Send for QueryKey<K> where
K: Send,
K: Send,
impl<K> Sync for QueryKey<K> where
K: Sync,
K: Sync,
impl<K> Unpin for QueryKey<K> where
K: Unpin,
K: Unpin,
impl<K> UnwindSafe for QueryKey<K> where
K: UnwindSafe,
K: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,