pub struct MgetItem {
pub index: Option<String>,
pub id: String,
pub routing: Option<String>,
}Expand description
One parsed multi-get fetch: the optional explicit _index (else the URL
default), the document _id, and the optional routing.
Fields§
§index: Option<String>The explicit _index from the doc entry, if any (else the URL default).
id: StringThe logical document id to fetch.
routing: Option<String>The explicit routing from the doc entry, if any.
Trait Implementations§
impl Eq for MgetItem
impl StructuralPartialEq for MgetItem
Auto Trait Implementations§
impl Freeze for MgetItem
impl RefUnwindSafe for MgetItem
impl Send for MgetItem
impl Sync for MgetItem
impl Unpin for MgetItem
impl UnsafeUnpin for MgetItem
impl UnwindSafe for MgetItem
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