Struct arrow_format::ipc::Schema
source · [−]pub struct Schema {
pub endianness: Endianness,
pub fields: Option<Vec<Field>>,
pub custom_metadata: Option<Vec<KeyValue>>,
pub features: Option<Vec<Feature>>,
}
Fields
endianness: Endianness
fields: Option<Vec<Field>>
custom_metadata: Option<Vec<KeyValue>>
features: Option<Vec<Feature>>
Implementations
sourceimpl Schema
impl Schema
pub fn create(
builder: &mut Builder,
endianness: impl WriteAsDefault<Endianness, Endianness>,
fields: impl WriteAsOptional<Offset<[Offset<Field>]>>,
custom_metadata: impl WriteAsOptional<Offset<[Offset<KeyValue>]>>,
features: impl WriteAsOptional<Offset<[Feature]>>
) -> Offset<Self>
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Schema
impl<'de> Deserialize<'de> for Schema
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Schema
impl VectorWrite<Offset<Schema>> for Schema
impl WriteAs<Offset<Schema>> for Schema
impl WriteAsOffset<Schema> for Schema
impl WriteAsOptional<Offset<Schema>> for Schema
Auto Trait Implementations
impl RefUnwindSafe for Schema
impl Send for Schema
impl Sync for Schema
impl Unpin for Schema
impl UnwindSafe for Schema
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more