Skip to main content

ServiceSends

Struct ServiceSends 

Source
pub struct ServiceSends<M> { /* private fields */ }
Expand description

Requests interpreted by the runtime local to the emitting actor.

Unlike crate::Delivery, a service request has no actor address. Its recipient is definitionally the interpreter of the actor whose transition emitted it. This distinct send lane lets interpreters route ordinary deliveries and local services with disjoint static implementations.

Implementations§

Source§

impl<M> ServiceSends<M>

Source

pub fn new(requests: Vec<M>) -> Self

Source

pub fn one(request: M) -> Self

Source

pub fn as_slice(&self) -> &[M]

Source

pub fn iter(&self) -> Iter<'_, M>

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source

pub fn extend(&mut self, requests: impl IntoIterator<Item = M>)

Source

pub fn into_requests(self) -> Vec<M>

Trait Implementations§

Source§

impl<M: Clone> Clone for ServiceSends<M>

Source§

fn clone(&self) -> ServiceSends<M>

Returns a duplicate 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<M: Debug> Debug for ServiceSends<M>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<M> Index<usize> for ServiceSends<M>

Source§

type Output = M

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<'a, M> IntoIterator for &'a ServiceSends<M>

Source§

type Item = &'a M

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, M>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<M> IntoIterator for ServiceSends<M>

Source§

type Item = M

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<M>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<M: PartialEq> PartialEq for ServiceSends<M>

Source§

fn eq(&self, other: &ServiceSends<M>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<M> SendAlgebra for ServiceSends<M>

Source§

fn empty() -> Self

Source§

fn append(&mut self, other: Self)

Source§

fn combine(self, other: Self) -> Self

Source§

fn send<Input, Path>(&mut self, input: Input)
where Self: SendInput<Input, Path>,

Append one request to its statically selected semantic lane.
Source§

fn sending<Input, Path>(input: Input) -> Self
where Self: SendInput<Input, Path>,

Build a send product containing one request in its selected lane.
Source§

impl<M> SendInput<M, Own> for ServiceSends<M>

Source§

fn emit(&mut self, input: M)

Source§

impl<M: Eq> Eq for ServiceSends<M>

Source§

impl<M> StructuralPartialEq for ServiceSends<M>

Auto Trait Implementations§

§

impl<M> Freeze for ServiceSends<M>

§

impl<M> RefUnwindSafe for ServiceSends<M>
where M: RefUnwindSafe,

§

impl<M> Send for ServiceSends<M>
where M: Send,

§

impl<M> Sync for ServiceSends<M>
where M: Sync,

§

impl<M> Unpin for ServiceSends<M>
where M: Unpin,

§

impl<M> UnsafeUnpin for ServiceSends<M>

§

impl<M> UnwindSafe for ServiceSends<M>
where M: UnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.