pub enum ProjectedReadResponse {
Missing,
Value(Value),
Text(String),
Bool(bool),
Len(usize),
Keys(Vec<String>),
}Variants§
Trait Implementations§
Source§impl Clone for ProjectedReadResponse
impl Clone for ProjectedReadResponse
Source§fn clone(&self) -> ProjectedReadResponse
fn clone(&self) -> ProjectedReadResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectedReadResponse
impl Debug for ProjectedReadResponse
Source§impl PartialEq for ProjectedReadResponse
impl PartialEq for ProjectedReadResponse
Source§fn eq(&self, other: &ProjectedReadResponse) -> bool
fn eq(&self, other: &ProjectedReadResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProjectedReadResponse
Auto Trait Implementations§
impl !RefUnwindSafe for ProjectedReadResponse
impl !UnwindSafe for ProjectedReadResponse
impl Freeze for ProjectedReadResponse
impl Send for ProjectedReadResponse
impl Sync for ProjectedReadResponse
impl Unpin for ProjectedReadResponse
impl UnsafeUnpin for ProjectedReadResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more