[][src]Struct arrow::ipc::gen::Schema::Schema

pub struct Schema<'a> {
    pub _tab: Table<'a>,
}

A Schema describes the columns in a row batch

Fields

_tab: Table<'a>

Implementations

impl<'a> Schema<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args SchemaArgs<'args>
) -> WIPOffset<Schema<'bldr>>
[src]

pub const VT_ENDIANNESS: VOffsetT[src]

pub const VT_FIELDS: VOffsetT[src]

pub const VT_CUSTOM_METADATA: VOffsetT[src]

pub const VT_FEATURES: VOffsetT[src]

pub fn endianness(&self) -> Endianness[src]

endianness of the buffer it is Little Endian by default if endianness doesn't match the underlying system then the vectors need to be converted

pub fn fields(&self) -> Option<Vector<'a, ForwardsUOffset<Field<'a>>>>[src]

pub fn custom_metadata(
    &self
) -> Option<Vector<'a, ForwardsUOffset<KeyValue<'a>>>>
[src]

pub fn features(&self) -> Option<Vector<'a, Feature>>[src]

Features used in the stream/file.

Trait Implementations

impl<'a> Clone for Schema<'a>[src]

impl<'a> Copy for Schema<'a>[src]

impl<'a> Debug for Schema<'a>[src]

impl<'a> Follow<'a> for Schema<'a>[src]

type Inner = Schema<'a>

impl<'a> PartialEq<Schema<'a>> for Schema<'a>[src]

impl<'a> StructuralPartialEq for Schema<'a>[src]

Auto Trait Implementations

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> UnwindSafe for Schema<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,