pub trait TryIntoProtocolNonce {
// Required method
fn try_into_protocol_nonce(self) -> Result<Uuid, Self>
where Self: Sized;
}
Expand description
A trait for cluster commands that provide a protocol nonce.
Required Methods§
Sourcefn try_into_protocol_nonce(self) -> Result<Uuid, Self>where
Self: Sized,
fn try_into_protocol_nonce(self) -> Result<Uuid, Self>where
Self: Sized,
Attempt to unpack self
into a nonce. Otherwise, fail and return self
back.