pub struct Schema<'a> {
pub encoding: SchemaEncoding,
pub bytes: &'a [u8],
}Expand description
The Arrow schema, carried as bytes this crate does not look inside.
Fields§
§encoding: SchemaEncodingHow the bytes are encoded.
bytes: &'a [u8]The bytes.
Implementations§
Trait Implementations§
impl<'a> Eq for Schema<'a>
impl<'a> StructuralPartialEq for Schema<'a>
Auto Trait Implementations§
impl<'a> Freeze for Schema<'a>
impl<'a> RefUnwindSafe for Schema<'a>
impl<'a> Send for Schema<'a>
impl<'a> Sync for Schema<'a>
impl<'a> Unpin for Schema<'a>
impl<'a> UnsafeUnpin for Schema<'a>
impl<'a> UnwindSafe for Schema<'a>
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