pub struct EgressIdentifier { /* private fields */ }
Expand description
A reference to an egress, consisting of a namespace and a name.
This has to be used when sending messages to an egress as part of the function Effects.
Implementations§
Source§impl EgressIdentifier
impl EgressIdentifier
Sourcepub fn new(namespace: &str, name: &str) -> EgressIdentifier
pub fn new(namespace: &str, name: &str) -> EgressIdentifier
Creates a new EgressIdentifier
from the given namespace and name.
Trait Implementations§
Source§impl Debug for EgressIdentifier
impl Debug for EgressIdentifier
Auto Trait Implementations§
impl Freeze for EgressIdentifier
impl RefUnwindSafe for EgressIdentifier
impl Send for EgressIdentifier
impl Sync for EgressIdentifier
impl Unpin for EgressIdentifier
impl UnwindSafe for EgressIdentifier
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