pub enum MultiGetItem {
Document(DocumentResponse),
Chunk(ChunkResponse),
}Variants§
Document(DocumentResponse)
Chunk(ChunkResponse)
Trait Implementations§
Source§impl Clone for MultiGetItem
impl Clone for MultiGetItem
Source§fn clone(&self) -> MultiGetItem
fn clone(&self) -> MultiGetItem
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 MultiGetItem
impl Debug for MultiGetItem
Source§impl<'de> Deserialize<'de> for MultiGetItem
impl<'de> Deserialize<'de> for MultiGetItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MultiGetItem
impl PartialEq for MultiGetItem
Source§fn eq(&self, other: &MultiGetItem) -> bool
fn eq(&self, other: &MultiGetItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MultiGetItem
impl Serialize for MultiGetItem
impl StructuralPartialEq for MultiGetItem
Auto Trait Implementations§
impl Freeze for MultiGetItem
impl RefUnwindSafe for MultiGetItem
impl Send for MultiGetItem
impl Sync for MultiGetItem
impl Unpin for MultiGetItem
impl UnsafeUnpin for MultiGetItem
impl UnwindSafe for MultiGetItem
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