Struct rustfbp::ports::IPSender [] [src]

pub struct IPSender {
    pub sender: SyncSender<IP>,
    pub dest: String,
    pub sched: Sender<CompMsg>,
}

An wrapper around SyncSender<IP>

A specific SyncSender for the IP object. It also send information to the scheduler.

Fields

The SyncSender, connected to a receiver in another component

The name of the component owning the receiver

A Sender to the scheduler, to signal that the receiver must be run

Methods

impl IPSender
[src]

Send an IP to the Receiver

Trait Implementations

impl Clone for IPSender
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more