Trait TryIntoProtocolNonce

Source
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§

Source

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.

Implementors§