pub struct OutboxSubject(/* private fields */);Expand description
Where an outbox message is destined once it is published.
Kept opaque to the engine: the domain decides that a message must go out and under what name, and the transport decides what that name means.
Implementations§
Trait Implementations§
Source§impl Clone for OutboxSubject
impl Clone for OutboxSubject
Source§fn clone(&self) -> OutboxSubject
fn clone(&self) -> OutboxSubject
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 Debug for OutboxSubject
impl Debug for OutboxSubject
Source§impl<'de> Deserialize<'de> for OutboxSubject
impl<'de> Deserialize<'de> for OutboxSubject
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OutboxSubject
impl Display for OutboxSubject
impl Eq for OutboxSubject
Source§impl Hash for OutboxSubject
impl Hash for OutboxSubject
Source§impl Ord for OutboxSubject
impl Ord for OutboxSubject
Source§fn cmp(&self, other: &OutboxSubject) -> Ordering
fn cmp(&self, other: &OutboxSubject) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OutboxSubject
impl PartialEq for OutboxSubject
Source§impl PartialOrd for OutboxSubject
impl PartialOrd for OutboxSubject
Source§impl Serialize for OutboxSubject
impl Serialize for OutboxSubject
impl StructuralPartialEq for OutboxSubject
Auto Trait Implementations§
impl Freeze for OutboxSubject
impl RefUnwindSafe for OutboxSubject
impl Send for OutboxSubject
impl Sync for OutboxSubject
impl Unpin for OutboxSubject
impl UnsafeUnpin for OutboxSubject
impl UnwindSafe for OutboxSubject
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