pub struct OutputRx<U, C, const NI: usize, const NO: usize>where
U: UniqueIdentifier,
C: TryWrite<U>,{
pub actor: String,
pub output: String,
pub hash: u64,
pub rxs: Vec<Receiver<Data<U>>>,
pub client: Arc<Mutex<C>>,
}Expand description
Output signature
OutputRx contains the data of an actor output that is necessary to create the associated input for the receiving actor
Fields§
§actor: String§output: String§hash: u64§rxs: Vec<Receiver<Data<U>>>§client: Arc<Mutex<C>>Trait Implementations§
Source§impl<U, CO, const NO: usize, const NI: usize> Debug for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
impl<U, CO, const NO: usize, const NI: usize> Debug for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
Source§impl<U, CO, const NO: usize, const NI: usize> Display for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
impl<U, CO, const NO: usize, const NI: usize> Display for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
Source§impl<U, CO, const NO: usize, const NI: usize> Error for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
impl<U, CO, const NO: usize, const NI: usize> Error for OutputRx<U, CO, NI, NO>where
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl<U, CO, const NO: usize, const NI: usize> From<OutputRx<U, CO, NI, NO>> for ActorOutputsErrorwhere
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
impl<U, CO, const NO: usize, const NI: usize> From<OutputRx<U, CO, NI, NO>> for ActorOutputsErrorwhere
U: 'static + UniqueIdentifier,
CO: TryWrite<U>,
Auto Trait Implementations§
impl<U, C, const NI: usize, const NO: usize> !RefUnwindSafe for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> !UnwindSafe for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> Freeze for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> Send for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> Sync for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> Unpin for OutputRx<U, C, NI, NO>
impl<U, C, const NI: usize, const NO: usize> UnsafeUnpin for OutputRx<U, C, NI, NO>
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