pub trait HostValuePort {
// Required methods
fn name(&self) -> &str;
fn try_pop_value(&self) -> Result<Option<(u64, Value)>, NodeError>;
}Expand description
Shared value-pop behavior for HostPort-like items.
pub trait HostValuePort {
// Required methods
fn name(&self) -> &str;
fn try_pop_value(&self) -> Result<Option<(u64, Value)>, NodeError>;
}Shared value-pop behavior for HostPort-like items.