pub struct CLIRuntimeNode<'a> { /* private fields */ }Trait Implementations§
Source§impl<'a> Clone for CLIRuntimeNode<'a>
impl<'a> Clone for CLIRuntimeNode<'a>
Source§fn clone(&self) -> CLIRuntimeNode<'a>
fn clone(&self) -> CLIRuntimeNode<'a>
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<'a> HfSendManyToOne<CLIRuntimeNode<'a>, u32> for CLIRuntimeCluster<'a>
impl<'a> HfSendManyToOne<CLIRuntimeNode<'a>, u32> for CLIRuntimeCluster<'a>
fn connect( &self, _other: &CLIRuntimeNode<'_>, _source_port: &String, _recipient_port: &String, )
fn gen_sink_statement(&self, port: &String) -> Expr
fn gen_source_statement(other: &CLIRuntimeNode<'a>, port: &String) -> Expr
Source§impl<'a> HfSendOneToMany<CLIRuntimeCluster<'a>, u32> for CLIRuntimeNode<'a>
impl<'a> HfSendOneToMany<CLIRuntimeCluster<'a>, u32> for CLIRuntimeNode<'a>
fn connect( &self, _other: &CLIRuntimeCluster<'_>, _source_port: &String, _recipient_port: &String, )
fn gen_sink_statement(&self, port: &String) -> Expr
fn gen_source_statement(other: &CLIRuntimeCluster<'a>, port: &String) -> Expr
Source§impl<'a> HfSendOneToOne<CLIRuntimeNode<'a>> for CLIRuntimeNode<'a>
impl<'a> HfSendOneToOne<CLIRuntimeNode<'a>> for CLIRuntimeNode<'a>
fn connect( &self, _other: &CLIRuntimeNode<'_>, _source_port: &String, _recipient_port: &String, )
fn gen_sink_statement(&self, port: &String) -> Expr
fn gen_source_statement(other: &CLIRuntimeNode<'a>, port: &String) -> Expr
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CLIRuntimeNode<'a>
impl<'a> !Send for CLIRuntimeNode<'a>
impl<'a> !Sync for CLIRuntimeNode<'a>
impl<'a> !UnwindSafe for CLIRuntimeNode<'a>
impl<'a> Freeze for CLIRuntimeNode<'a>
impl<'a> Unpin for CLIRuntimeNode<'a>
impl<'a> UnsafeUnpin for CLIRuntimeNode<'a>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<O, Cid, H> HfSend<O, ((), (), Cid)> for Hwhere
O: Location,
H: HfSendOneToMany<O, Cid>,
impl<O, Cid, H> HfSend<O, ((), (), Cid)> for Hwhere
O: Location,
H: HfSendOneToMany<O, Cid>,
type In<T> = (Cid, T)
type Out<T> = T
fn connect( &self, other: &O, source_port: &<H as Location>::Port, recipient_port: &<O as Location>::Port, )
fn gen_sink_statement(&self, port: &<H as Location>::Port) -> Expr
fn gen_source_statement(other: &O, port: &<O as Location>::Port) -> Expr
fn is_demux() -> bool
fn is_tagged() -> bool
Source§impl<O, H> HfSend<O, ()> for Hwhere
O: Location,
H: HfSendOneToOne<O>,
impl<O, H> HfSend<O, ()> for Hwhere
O: Location,
H: HfSendOneToOne<O>,
type In<T> = T
type Out<T> = T
fn connect( &self, other: &O, source_port: &<H as Location>::Port, recipient_port: &<O as Location>::Port, )
fn gen_sink_statement(&self, port: &<H as Location>::Port) -> Expr
fn gen_source_statement(other: &O, port: &<O as Location>::Port) -> Expr
fn is_demux() -> bool
fn is_tagged() -> bool
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more