pub struct EncodedPropertySnapshot {
pub descriptors: Vec<u8>,
pub data: Vec<u8>,
}Expand description
Encoded property descriptor and Arrow IPC data payloads.
§Performance
Cloning is O(descriptor bytes + data bytes).
Fields§
§descriptors: Vec<u8>Payload for the selected property descriptor section kind.
data: Vec<u8>Payload for the selected property data section kind.
Trait Implementations§
Source§impl Clone for EncodedPropertySnapshot
impl Clone for EncodedPropertySnapshot
Source§fn clone(&self) -> EncodedPropertySnapshot
fn clone(&self) -> EncodedPropertySnapshot
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 EncodedPropertySnapshot
impl Debug for EncodedPropertySnapshot
impl Eq for EncodedPropertySnapshot
Source§impl PartialEq for EncodedPropertySnapshot
impl PartialEq for EncodedPropertySnapshot
Source§fn eq(&self, other: &EncodedPropertySnapshot) -> bool
fn eq(&self, other: &EncodedPropertySnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EncodedPropertySnapshot
Auto Trait Implementations§
impl Freeze for EncodedPropertySnapshot
impl RefUnwindSafe for EncodedPropertySnapshot
impl Send for EncodedPropertySnapshot
impl Sync for EncodedPropertySnapshot
impl Unpin for EncodedPropertySnapshot
impl UnsafeUnpin for EncodedPropertySnapshot
impl UnwindSafe for EncodedPropertySnapshot
Blanket Implementations§
impl<T> Allocation for T
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