pub struct ObjectValue {
pub schema: Option<String>,
pub type_name: Option<String>,
pub packed_data: Vec<u8>,
}Expand description
Heap payload of QueryValue::Object (ADT / collection image). Boxed out
of the enum — see QueryValue.
Fields§
§schema: Option<String>§type_name: Option<String>§packed_data: Vec<u8>Trait Implementations§
Source§impl Clone for ObjectValue
impl Clone for ObjectValue
Source§fn clone(&self) -> ObjectValue
fn clone(&self) -> ObjectValue
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 ObjectValue
impl Debug for ObjectValue
Source§impl PartialEq for ObjectValue
impl PartialEq for ObjectValue
Source§fn eq(&self, other: &ObjectValue) -> bool
fn eq(&self, other: &ObjectValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ObjectValue
Auto Trait Implementations§
impl Freeze for ObjectValue
impl RefUnwindSafe for ObjectValue
impl Send for ObjectValue
impl Sync for ObjectValue
impl Unpin for ObjectValue
impl UnsafeUnpin for ObjectValue
impl UnwindSafe for ObjectValue
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