pub enum AddressKind {
Literal,
Templated,
Query,
File,
}Expand description
How a datasource is backed. Only Literal yields a physical address that
can be joined against externally-observed state; Templated addresses
resolve at run time and are surfaced raw rather than silently dropped.
Variants§
Literal
address x.y or a backtick-quoted literal — a physical warehouse table.
Templated
address f…`` — an f-string; address holds the raw template.
Query
query ... — a view over other assets; no physical table.
File
file ... — a local file source; address holds the raw spec.
Implementations§
Trait Implementations§
Source§impl Clone for AddressKind
impl Clone for AddressKind
Source§fn clone(&self) -> AddressKind
fn clone(&self) -> AddressKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AddressKind
Source§impl Debug for AddressKind
impl Debug for AddressKind
Source§impl Display for AddressKind
impl Display for AddressKind
impl Eq for AddressKind
Source§impl Hash for AddressKind
impl Hash for AddressKind
Source§impl PartialEq for AddressKind
impl PartialEq for AddressKind
impl StructuralPartialEq for AddressKind
Auto Trait Implementations§
impl Freeze for AddressKind
impl RefUnwindSafe for AddressKind
impl Send for AddressKind
impl Sync for AddressKind
impl Unpin for AddressKind
impl UnsafeUnpin for AddressKind
impl UnwindSafe for AddressKind
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