#[non_exhaustive]pub enum Source {
BigQuerySource(Box<BigQuerySource>),
FeatureRegistrySource(Box<FeatureRegistrySource>),
VertexRagSource(Box<VertexRagSource>),
}Available on crate feature
feature-online-store-admin-service only.Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BigQuerySource(Box<BigQuerySource>)
Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.
FeatureRegistrySource(Box<FeatureRegistrySource>)
Optional. Configures the features from a Feature Registry source that need to be loaded onto the FeatureOnlineStore.
VertexRagSource(Box<VertexRagSource>)
Optional. The Vertex RAG Source that the FeatureView is linked to.
Trait Implementations§
impl StructuralPartialEq for Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnwindSafe for Source
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