Struct ockam_core::ProtocolId
source · pub struct ProtocolId(/* private fields */);
Expand description
A user-defined protocol identifier.
When creating workers that should asynchronously speak different protocols, this identifier can be used to switch message parsing between delegated workers, each responsible for only one protocol.
TODO @deprecated supplanted by the new metadata message types in
ockam::OckamMessage
Implementations§
Trait Implementations§
source§impl Clone for ProtocolId
impl Clone for ProtocolId
source§fn clone(&self) -> ProtocolId
fn clone(&self) -> ProtocolId
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 ProtocolId
impl Debug for ProtocolId
source§impl<'de> Deserialize<'de> for ProtocolId
impl<'de> Deserialize<'de> for ProtocolId
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 ProtocolId
impl Display for ProtocolId
source§impl From<&'static str> for ProtocolId
impl From<&'static str> for ProtocolId
source§impl Hash for ProtocolId
impl Hash for ProtocolId
source§impl Ord for ProtocolId
impl Ord for ProtocolId
source§fn cmp(&self, other: &ProtocolId) -> Ordering
fn cmp(&self, other: &ProtocolId) -> Ordering
1.21.0 · 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 ProtocolId
impl PartialEq for ProtocolId
source§fn eq(&self, other: &ProtocolId) -> bool
fn eq(&self, other: &ProtocolId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ProtocolId
impl PartialOrd for ProtocolId
source§fn partial_cmp(&self, other: &ProtocolId) -> Option<Ordering>
fn partial_cmp(&self, other: &ProtocolId) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ProtocolId
impl Serialize for ProtocolId
impl Eq for ProtocolId
impl StructuralEq for ProtocolId
impl StructuralPartialEq for ProtocolId
Auto Trait Implementations§
impl RefUnwindSafe for ProtocolId
impl Send for ProtocolId
impl Sync for ProtocolId
impl Unpin for ProtocolId
impl UnwindSafe for ProtocolId
Blanket Implementations§
source§impl<D> AsyncTryClone for D
impl<D> AsyncTryClone for D
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