pub struct LayoutAdapter<V: VTable>(/* private fields */);Trait Implementations§
Source§impl<V: VTable> Debug for LayoutAdapter<V>
impl<V: VTable> Debug for LayoutAdapter<V>
Source§impl<V: VTable> Layout for LayoutAdapter<V>
impl<V: VTable> Layout for LayoutAdapter<V>
fn as_any(&self) -> &dyn Any
fn as_any_arc(self: Arc<Self>) -> Arc<dyn Any + Send + Sync>
fn to_layout(&self) -> LayoutRef
Source§fn encoding(&self) -> LayoutEncodingRef
fn encoding(&self) -> LayoutEncodingRef
Returns the
crate::LayoutEncoding for this layout.Source§fn child_type(&self, idx: usize) -> LayoutChildType
fn child_type(&self, idx: usize) -> LayoutChildType
Get the relative row offset of the child at the given index, returning
None for
any auxilliary children, e.g. dictionary values, zone maps, etc.Source§fn segment_ids(&self) -> Vec<SegmentId>
fn segment_ids(&self) -> Vec<SegmentId>
Get the segment IDs for this layout.
fn new_reader( &self, name: Arc<str>, segment_source: Arc<dyn SegmentSource>, ) -> VortexResult<LayoutReaderRef>
Auto Trait Implementations§
impl<V> Freeze for LayoutAdapter<V>
impl<V> RefUnwindSafe for LayoutAdapter<V>
impl<V> Send for LayoutAdapter<V>
impl<V> Sync for LayoutAdapter<V>
impl<V> Unpin for LayoutAdapter<V>
impl<V> UnwindSafe for LayoutAdapter<V>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more