pub struct InboundRequestId(/* private fields */);
Expand description
The ID of an inbound request.
Note: InboundRequestId
’s uniqueness is only guaranteed between
inbound requests of the same originating Behaviour
.
Trait Implementations§
source§impl Clone for InboundRequestId
impl Clone for InboundRequestId
source§fn clone(&self) -> InboundRequestId
fn clone(&self) -> InboundRequestId
Returns a copy of the value. Read more
1.0.0 · 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 InboundRequestId
impl Debug for InboundRequestId
source§impl Display for InboundRequestId
impl Display for InboundRequestId
source§impl Hash for InboundRequestId
impl Hash for InboundRequestId
source§impl PartialEq for InboundRequestId
impl PartialEq for InboundRequestId
source§fn eq(&self, other: &InboundRequestId) -> bool
fn eq(&self, other: &InboundRequestId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for InboundRequestId
impl Eq for InboundRequestId
impl StructuralEq for InboundRequestId
impl StructuralPartialEq for InboundRequestId
Auto Trait Implementations§
impl RefUnwindSafe for InboundRequestId
impl Send for InboundRequestId
impl Sync for InboundRequestId
impl Unpin for InboundRequestId
impl UnwindSafe for InboundRequestId
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