pub struct TerminalPredictionSelector {
pub node_id: NodeId,
pub port: String,
}Expand description
Explicit terminal output selected by the caller.
A node alone is not enough: graphs may expose more than one prediction output, so the selected producer port is an integrity boundary as well.
Fields§
§node_id: NodeId§port: StringImplementations§
Source§impl TerminalPredictionSelector
impl TerminalPredictionSelector
pub fn new( node_id: NodeId, port: impl Into<String>, ) -> Result<TerminalPredictionSelector, DagMlError>
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for TerminalPredictionSelector
impl Clone for TerminalPredictionSelector
Source§fn clone(&self) -> TerminalPredictionSelector
fn clone(&self) -> TerminalPredictionSelector
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 TerminalPredictionSelector
impl Debug for TerminalPredictionSelector
Source§impl<'de> Deserialize<'de> for TerminalPredictionSelector
impl<'de> Deserialize<'de> for TerminalPredictionSelector
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TerminalPredictionSelector, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TerminalPredictionSelector, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TerminalPredictionSelector
Source§impl Serialize for TerminalPredictionSelector
impl Serialize for TerminalPredictionSelector
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 TerminalPredictionSelector
Auto Trait Implementations§
impl Freeze for TerminalPredictionSelector
impl RefUnwindSafe for TerminalPredictionSelector
impl Send for TerminalPredictionSelector
impl Sync for TerminalPredictionSelector
impl Unpin for TerminalPredictionSelector
impl UnsafeUnpin for TerminalPredictionSelector
impl UnwindSafe for TerminalPredictionSelector
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.