pub trait ArrowSessionExt: SessionExt {
// Required method
fn arrow(&self) -> Ref<'_, ArrowSession>;
}Expand description
Extension trait for accessing the ArrowSession on a Vortex session.
Required Methods§
Sourcefn arrow(&self) -> Ref<'_, ArrowSession>
fn arrow(&self) -> Ref<'_, ArrowSession>
Get the Arrow session.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.