Enum iceberg_rust_spec::spec::tabular::TabularMetadataRef
source · pub enum TabularMetadataRef<'a> {
Table(&'a TableMetadata),
View(&'a ViewMetadata),
MaterializedView(&'a MaterializedViewMetadata),
}Variants§
Table(&'a TableMetadata)
Table metadata
View(&'a ViewMetadata)
View metadata
MaterializedView(&'a MaterializedViewMetadata)
Materialized view metadata
Implementations§
Trait Implementations§
source§impl<'a> From<&'a GeneralViewMetadata<FullIdentifier>> for TabularMetadataRef<'a>
impl<'a> From<&'a GeneralViewMetadata<FullIdentifier>> for TabularMetadataRef<'a>
source§fn from(value: &'a MaterializedViewMetadata) -> Self
fn from(value: &'a MaterializedViewMetadata) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a GeneralViewMetadata<Option<()>>> for TabularMetadataRef<'a>
impl<'a> From<&'a GeneralViewMetadata<Option<()>>> for TabularMetadataRef<'a>
source§fn from(value: &'a ViewMetadata) -> Self
fn from(value: &'a ViewMetadata) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a TableMetadata> for TabularMetadataRef<'a>
impl<'a> From<&'a TableMetadata> for TabularMetadataRef<'a>
source§fn from(value: &'a TableMetadata) -> Self
fn from(value: &'a TableMetadata) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a TabularMetadata> for TabularMetadataRef<'a>
impl<'a> From<&'a TabularMetadata> for TabularMetadataRef<'a>
source§fn from(value: &'a TabularMetadata) -> Self
fn from(value: &'a TabularMetadata) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for TabularMetadataRef<'a>
impl<'a> RefUnwindSafe for TabularMetadataRef<'a>
impl<'a> Send for TabularMetadataRef<'a>
impl<'a> Sync for TabularMetadataRef<'a>
impl<'a> Unpin for TabularMetadataRef<'a>
impl<'a> UnwindSafe for TabularMetadataRef<'a>
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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