#[non_exhaustive]
pub enum ClientMessage {
Show 16 variants
ClientHandshake(ClientHandshake),
ExecuteScript(ExecuteScript),
Prepare(Prepare),
DescribeStatement(DescribeStatement),
Execute(Execute),
OptimisticExecute(OptimisticExecute),
UnknownMessage(u8, Bytes),
AuthenticationSaslInitialResponse(SaslInitialResponse),
AuthenticationSaslResponse(SaslResponse),
Dump(Dump),
Restore(Restore),
RestoreBlock(RestoreBlock),
RestoreEof,
Sync,
Flush,
Terminate,
}
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ClientHandshake(ClientHandshake)
ExecuteScript(ExecuteScript)
Prepare(Prepare)
DescribeStatement(DescribeStatement)
Execute(Execute)
OptimisticExecute(OptimisticExecute)
UnknownMessage(u8, Bytes)
AuthenticationSaslInitialResponse(SaslInitialResponse)
AuthenticationSaslResponse(SaslResponse)
Dump(Dump)
Restore(Restore)
RestoreBlock(RestoreBlock)
RestoreEof
Sync
Flush
Terminate
Implementations
sourceimpl ClientMessage
impl ClientMessage
pub fn encode(&self, buf: &mut Output<'_>) -> Result<(), EncodeError>
sourcepub fn decode(buf: &mut Input) -> Result<ClientMessage, DecodeError>
pub fn decode(buf: &mut Input) -> Result<ClientMessage, DecodeError>
Decode exactly one frame from the buffer.
This expects a full frame to already be in the buffer. It can return an arbitrary error or be silent if a message is only partially present in the buffer or if extra data is present.
Trait Implementations
sourceimpl Clone for ClientMessage
impl Clone for ClientMessage
sourcefn clone(&self) -> ClientMessage
fn clone(&self) -> ClientMessage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ClientMessage
impl Debug for ClientMessage
sourceimpl PartialEq<ClientMessage> for ClientMessage
impl PartialEq<ClientMessage> for ClientMessage
sourcefn eq(&self, other: &ClientMessage) -> bool
fn eq(&self, other: &ClientMessage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ClientMessage) -> bool
fn ne(&self, other: &ClientMessage) -> bool
This method tests for !=
.
impl Eq for ClientMessage
impl StructuralEq for ClientMessage
impl StructuralPartialEq for ClientMessage
Auto Trait Implementations
impl RefUnwindSafe for ClientMessage
impl Send for ClientMessage
impl Sync for ClientMessage
impl Unpin for ClientMessage
impl UnwindSafe for ClientMessage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more