pub enum ForkMaterialization {
Fork,
Deferred,
}Expand description
Fork workspaces only — ‘fork’ when this ducklake asset was materialized in the fork itself, ‘deferred’ when reads fall back to the parent workspace’s current table via a defer view. Omitted otherwise.
Variants§
Trait Implementations§
Source§impl Clone for ForkMaterialization
impl Clone for ForkMaterialization
Source§fn clone(&self) -> ForkMaterialization
fn clone(&self) -> ForkMaterialization
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 ForkMaterialization
Source§impl Debug for ForkMaterialization
impl Debug for ForkMaterialization
Source§impl Default for ForkMaterialization
impl Default for ForkMaterialization
Source§fn default() -> ForkMaterialization
fn default() -> ForkMaterialization
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ForkMaterialization
impl<'de> Deserialize<'de> for ForkMaterialization
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ForkMaterialization
Source§impl Hash for ForkMaterialization
impl Hash for ForkMaterialization
Source§impl Ord for ForkMaterialization
impl Ord for ForkMaterialization
Source§fn cmp(&self, other: &ForkMaterialization) -> Ordering
fn cmp(&self, other: &ForkMaterialization) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ForkMaterialization
impl PartialEq for ForkMaterialization
Source§fn eq(&self, other: &ForkMaterialization) -> bool
fn eq(&self, other: &ForkMaterialization) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ForkMaterialization
impl PartialOrd for ForkMaterialization
Source§impl Serialize for ForkMaterialization
impl Serialize for ForkMaterialization
impl StructuralPartialEq for ForkMaterialization
Auto Trait Implementations§
impl Freeze for ForkMaterialization
impl RefUnwindSafe for ForkMaterialization
impl Send for ForkMaterialization
impl Sync for ForkMaterialization
impl Unpin for ForkMaterialization
impl UnsafeUnpin for ForkMaterialization
impl UnwindSafe for ForkMaterialization
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