Struct ConnectionId
pub struct ConnectionId(pub String);
Tuple Fields§
§0: String
Implementations§
§impl ConnectionId
impl ConnectionId
pub fn new(identifier: u64) -> ConnectionId
pub fn new(identifier: u64) -> ConnectionId
Builds a new connection identifier. Connection identifiers are deterministically formed from
two elements: a prefix prefix
, and a monotonically increasing counter
; these are
separated by a dash “-”. The prefix is currently determined statically (see
ConnectionId::prefix()
) so this method accepts a single argument, the counter
.
let conn_id = ConnectionId::new(11);
assert_eq!(&conn_id, "connection-11");
Trait Implementations§
§impl Clone for ConnectionId
impl Clone for ConnectionId
§fn clone(&self) -> ConnectionId
fn clone(&self) -> ConnectionId
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 more§impl Debug for ConnectionId
impl Debug for ConnectionId
§impl Default for ConnectionId
impl Default for ConnectionId
§fn default() -> ConnectionId
fn default() -> ConnectionId
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for ConnectionId
impl<'de> Deserialize<'de> for ConnectionId
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConnectionId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConnectionId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for ConnectionId
This implementation provides a to_string
method.
impl Display for ConnectionId
This implementation provides a to_string
method.
§impl FromStr for ConnectionId
impl FromStr for ConnectionId
§type Err = IdentifierError
type Err = IdentifierError
The associated error which can be returned from parsing.
§fn from_str(s: &str) -> Result<ConnectionId, <ConnectionId as FromStr>::Err>
fn from_str(s: &str) -> Result<ConnectionId, <ConnectionId as FromStr>::Err>
Parses a string
s
to return a value of this type. Read more§impl Hash for ConnectionId
impl Hash for ConnectionId
§impl Ord for ConnectionId
impl Ord for ConnectionId
§impl PartialEq<str> for ConnectionId
Equality check against string literal (satisfies &ConnectionId == &str).
impl PartialEq<str> for ConnectionId
Equality check against string literal (satisfies &ConnectionId == &str).
let conn_id = ConnectionId::from_str("connectionId-0");
assert!(conn_id.is_ok());
conn_id.map(|id| {assert_eq!(&id, "connectionId-0")});
§impl PartialEq for ConnectionId
impl PartialEq for ConnectionId
§impl PartialOrd for ConnectionId
impl PartialOrd for ConnectionId
§impl Serialize for ConnectionId
impl Serialize for ConnectionId
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ConnectionId
impl StructuralPartialEq for ConnectionId
Auto Trait Implementations§
impl Freeze for ConnectionId
impl RefUnwindSafe for ConnectionId
impl Send for ConnectionId
impl Sync for ConnectionId
impl Unpin for ConnectionId
impl UnwindSafe for ConnectionId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request