pub struct ItemResult {
pub pos: u64,
pub val: Val,
pub values: Vec<Val>,
pub open: bool,
}Fields§
§pos: u64§val: Val§values: Vec<Val>§open: boolTrait Implementations§
Source§impl Clone for ItemResult
impl Clone for ItemResult
Source§fn clone(&self) -> ItemResult
fn clone(&self) -> ItemResult
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 ItemResult
impl Debug for ItemResult
Source§impl PartialEq for ItemResult
impl PartialEq for ItemResult
Source§fn eq(&self, other: &ItemResult) -> bool
fn eq(&self, other: &ItemResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItemResult
Auto Trait Implementations§
impl Freeze for ItemResult
impl RefUnwindSafe for ItemResult
impl Send for ItemResult
impl Sync for ItemResult
impl Unpin for ItemResult
impl UnsafeUnpin for ItemResult
impl UnwindSafe for ItemResult
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