pub enum ArrayImpl {
Int32(PrimitiveArray<i32>),
String(StringArray),
}Expand description
Checkpoint 1: extend this starter pair to every non-List physical family.
Variants§
Int32(PrimitiveArray<i32>)
String(StringArray)
Trait Implementations§
impl StructuralPartialEq for ArrayImpl
Auto Trait Implementations§
impl Freeze for ArrayImpl
impl RefUnwindSafe for ArrayImpl
impl Send for ArrayImpl
impl Sync for ArrayImpl
impl Unpin for ArrayImpl
impl UnsafeUnpin for ArrayImpl
impl UnwindSafe for ArrayImpl
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