pub struct CoordinatorDataHandleRecord {Show 16 fields
pub handle: CoordinatorHandleRef,
pub run_id: String,
pub node_id: String,
pub input_name: String,
pub phase: String,
pub variant_id: Option<String>,
pub fold_id: Option<String>,
pub request_id: String,
pub schema_fingerprint: String,
pub plan_fingerprint: String,
pub relation_fingerprint: Option<String>,
pub plan_id: String,
pub output_representation: RepresentationId,
pub source_ids: Vec<SourceId>,
pub sample_count: Option<usize>,
pub relation_record_count: Option<usize>,
}Fields§
§handle: CoordinatorHandleRef§run_id: String§node_id: String§input_name: String§phase: String§variant_id: Option<String>§fold_id: Option<String>§request_id: String§schema_fingerprint: String§plan_fingerprint: String§relation_fingerprint: Option<String>§plan_id: String§output_representation: RepresentationId§source_ids: Vec<SourceId>§sample_count: Option<usize>§relation_record_count: Option<usize>Trait Implementations§
Source§impl Clone for CoordinatorDataHandleRecord
impl Clone for CoordinatorDataHandleRecord
Source§fn clone(&self) -> CoordinatorDataHandleRecord
fn clone(&self) -> CoordinatorDataHandleRecord
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 CoordinatorDataHandleRecord
impl Debug for CoordinatorDataHandleRecord
Source§impl<'de> Deserialize<'de> for CoordinatorDataHandleRecord
impl<'de> Deserialize<'de> for CoordinatorDataHandleRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorDataHandleRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CoordinatorDataHandleRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CoordinatorDataHandleRecord
Source§impl PartialEq for CoordinatorDataHandleRecord
impl PartialEq for CoordinatorDataHandleRecord
Source§fn eq(&self, other: &CoordinatorDataHandleRecord) -> bool
fn eq(&self, other: &CoordinatorDataHandleRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoordinatorDataHandleRecord
impl Serialize for CoordinatorDataHandleRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CoordinatorDataHandleRecord
Auto Trait Implementations§
impl Freeze for CoordinatorDataHandleRecord
impl RefUnwindSafe for CoordinatorDataHandleRecord
impl Send for CoordinatorDataHandleRecord
impl Sync for CoordinatorDataHandleRecord
impl Unpin for CoordinatorDataHandleRecord
impl UnsafeUnpin for CoordinatorDataHandleRecord
impl UnwindSafe for CoordinatorDataHandleRecord
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