#[non_exhaustive]pub enum Source {
InlineSource(Box<InlineSource>),
GcsSource(Box<GcsSource>),
BigquerySource(Box<BigQuerySource>),
FhirStoreSource(Box<FhirStoreSource>),
SpannerSource(Box<SpannerSource>),
CloudSqlSource(Box<CloudSqlSource>),
FirestoreSource(Box<FirestoreSource>),
AlloyDbSource(Box<AlloyDbSource>),
BigtableSource(Box<BigtableSource>),
}Available on crate feature
document-service only.Expand description
Required. The source of the input.
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.
InlineSource(Box<InlineSource>)
The Inline source for the input content for documents.
GcsSource(Box<GcsSource>)
Cloud Storage location for the input content.
BigquerySource(Box<BigQuerySource>)
BigQuery input source.
FhirStoreSource(Box<FhirStoreSource>)
FhirStore input source.
SpannerSource(Box<SpannerSource>)
Spanner input source.
CloudSqlSource(Box<CloudSqlSource>)
Cloud SQL input source.
FirestoreSource(Box<FirestoreSource>)
Firestore input source.
AlloyDbSource(Box<AlloyDbSource>)
AlloyDB input source.
BigtableSource(Box<BigtableSource>)
Cloud Bigtable input source.
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