pub struct OutputBinding {Show 16 fields
pub schema_version: u32,
pub binding_id: String,
pub node_id: NodeId,
pub port_name: String,
pub prediction_level: PredictionLevel,
pub unit_level: Option<EntityUnitLevel>,
pub prediction_kind: PredictionKind,
pub prediction_source: PredictionSource,
pub refit_strategy: Option<RefitStrategy>,
pub aggregation_fingerprint: String,
pub target_names: Vec<String>,
pub target_units: Vec<Option<String>>,
pub class_labels: Vec<Vec<String>>,
pub output_order: OutputOrder,
pub target_space: String,
pub binding_fingerprint: String,
}Expand description
A resolved W0 OutputBinding with native port validation.
Fields§
§schema_version: u32§binding_id: String§node_id: NodeId§port_name: String§prediction_level: PredictionLevel§unit_level: Option<EntityUnitLevel>§prediction_kind: PredictionKind§prediction_source: PredictionSource§refit_strategy: Option<RefitStrategy>§aggregation_fingerprint: String§target_names: Vec<String>§target_units: Vec<Option<String>>§class_labels: Vec<Vec<String>>§output_order: OutputOrder§target_space: String§binding_fingerprint: StringImplementations§
Trait Implementations§
Source§impl Clone for OutputBinding
impl Clone for OutputBinding
Source§fn clone(&self) -> OutputBinding
fn clone(&self) -> OutputBinding
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 OutputBinding
impl Debug for OutputBinding
Source§impl<'de> Deserialize<'de> for OutputBinding
impl<'de> Deserialize<'de> for OutputBinding
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 OutputBinding
Source§impl PartialEq for OutputBinding
impl PartialEq for OutputBinding
Source§impl Serialize for OutputBinding
impl Serialize for OutputBinding
impl StructuralPartialEq for OutputBinding
Auto Trait Implementations§
impl Freeze for OutputBinding
impl RefUnwindSafe for OutputBinding
impl Send for OutputBinding
impl Sync for OutputBinding
impl Unpin for OutputBinding
impl UnsafeUnpin for OutputBinding
impl UnwindSafe for OutputBinding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.