Struct blinkcast::alloc::Sender

source ·
pub struct Sender<T> { /* private fields */ }
Expand description

The sender of the channel.

This is a cloneable sender, so you can have multiple senders that will send to the same channel.

Broadcast messages sent by using the send method.

Examples

use blinkcast::alloc::channel;

let (sender, mut receiver) = channel::<i32>(4);

sender.send(1);
let sender2 = sender.clone();
sender2.send(2);

assert_eq!(receiver.recv(), Some(1));
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);

Or using the new method:

use blinkcast::alloc::Sender;

let sender = Sender::<i32>::new(4);

let mut receiver = sender.new_receiver();

sender.send(1);
sender.send(2);
assert_eq!(receiver.recv(), Some(1));
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);

Implementations§

source§

impl<T: Clone> Sender<T>

source

pub fn send(&self, value: T)

Sends a message to the channel. If the channel is full, the oldest message will be overwritten. So the receiver must be quick or it will lose the old data.

source

pub fn new(size: usize) -> Self

Creates a new channel with a buffer of size N.

source

pub fn new_receiver(&self) -> Receiver<T>

Creates a new receiver that starts from the same point as the sender.

Examples
use blinkcast::alloc::Sender;

let sender = Sender::<i32>::new(4);

sender.send(1);

let mut receiver = sender.new_receiver();
assert_eq!(receiver.recv(), None);

sender.send(2);
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);

Trait Implementations§

source§

impl<T> Clone for Sender<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Clone + Send> Send for Sender<T>

source§

impl<T: Clone + Send> Sync for Sender<T>

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Sender<T>

§

impl<T> Unpin for Sender<T>

§

impl<T> !UnwindSafe for Sender<T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.