struct FieldBinding {
arrow_index: usize,
nullability: Option<Nullability>,
plan: FieldPlan,
}
Fields§
§arrow_index: usize
Index of the Arrow field/column associated with this Avro field site
nullability: Option<Nullability>
Nullability/order for this site (None for required fields)
plan: FieldPlan
Nested plan for this site
Trait Implementations§
Source§impl Clone for FieldBinding
impl Clone for FieldBinding
Source§fn clone(&self) -> FieldBinding
fn clone(&self) -> FieldBinding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FieldBinding
impl RefUnwindSafe for FieldBinding
impl Send for FieldBinding
impl Sync for FieldBinding
impl Unpin for FieldBinding
impl UnwindSafe for FieldBinding
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