pub struct PartitionsInRange {
pub producer_path: String,
pub partition_kind: PartitionKind,
pub partitions: Vec<PartitionsInRangePartitionsInner>,
}Fields§
§producer_path: Stringthe pipeline script that materializes the asset (managed // materialize target, or a partitioned writer using the SDK helpers) — the runnable a backfill launches
partition_kind: PartitionKind§partitions: Vec<PartitionsInRangePartitionsInner>Implementations§
Source§impl PartitionsInRange
impl PartitionsInRange
pub fn new( producer_path: String, partition_kind: PartitionKind, partitions: Vec<PartitionsInRangePartitionsInner>, ) -> PartitionsInRange
Trait Implementations§
Source§impl Clone for PartitionsInRange
impl Clone for PartitionsInRange
Source§fn clone(&self) -> PartitionsInRange
fn clone(&self) -> PartitionsInRange
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 PartitionsInRange
impl Debug for PartitionsInRange
Source§impl Default for PartitionsInRange
impl Default for PartitionsInRange
Source§fn default() -> PartitionsInRange
fn default() -> PartitionsInRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartitionsInRange
impl<'de> Deserialize<'de> for PartitionsInRange
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 PartitionsInRange
impl PartialEq for PartitionsInRange
Source§fn eq(&self, other: &PartitionsInRange) -> bool
fn eq(&self, other: &PartitionsInRange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PartitionsInRange
impl Serialize for PartitionsInRange
impl StructuralPartialEq for PartitionsInRange
Auto Trait Implementations§
impl Freeze for PartitionsInRange
impl RefUnwindSafe for PartitionsInRange
impl Send for PartitionsInRange
impl Sync for PartitionsInRange
impl Unpin for PartitionsInRange
impl UnsafeUnpin for PartitionsInRange
impl UnwindSafe for PartitionsInRange
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