pub struct MaterializedPartition {
pub asset_kind: AssetKind,
pub asset_path: String,
pub partition: String,
pub status: Status,
pub snapshot_id: Option<Option<i64>>,
pub row_count: Option<Option<i64>>,
pub job_id: Option<Option<Uuid>>,
pub materialized_at: String,
pub error: Option<Option<String>>,
}Fields§
§asset_kind: AssetKind§asset_path: String§partition: String§status: Status§snapshot_id: Option<Option<i64>>§row_count: Option<Option<i64>>§job_id: Option<Option<Uuid>>§materialized_at: String§error: Option<Option<String>>Implementations§
Trait Implementations§
Source§impl Clone for MaterializedPartition
impl Clone for MaterializedPartition
Source§fn clone(&self) -> MaterializedPartition
fn clone(&self) -> MaterializedPartition
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 moreSource§impl Debug for MaterializedPartition
impl Debug for MaterializedPartition
Source§impl Default for MaterializedPartition
impl Default for MaterializedPartition
Source§fn default() -> MaterializedPartition
fn default() -> MaterializedPartition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MaterializedPartition
impl<'de> Deserialize<'de> for MaterializedPartition
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
Source§impl PartialEq for MaterializedPartition
impl PartialEq for MaterializedPartition
Source§fn eq(&self, other: &MaterializedPartition) -> bool
fn eq(&self, other: &MaterializedPartition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaterializedPartition
impl Serialize for MaterializedPartition
impl StructuralPartialEq for MaterializedPartition
Auto Trait Implementations§
impl Freeze for MaterializedPartition
impl RefUnwindSafe for MaterializedPartition
impl Send for MaterializedPartition
impl Sync for MaterializedPartition
impl Unpin for MaterializedPartition
impl UnsafeUnpin for MaterializedPartition
impl UnwindSafe for MaterializedPartition
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