#[non_exhaustive]pub enum ClientMessage {
Show 18 variants
ClientHandshake(ClientHandshake),
ExecuteScript(ExecuteScript),
Prepare(Prepare),
Parse(Parse),
DescribeStatement(DescribeStatement),
Execute0(Execute0),
Execute1(Execute1),
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)
Parse(Parse)
DescribeStatement(DescribeStatement)
Execute0(Execute0)
Execute1(Execute1)
OptimisticExecute(OptimisticExecute)
UnknownMessage(u8, Bytes)
AuthenticationSaslInitialResponse(SaslInitialResponse)
AuthenticationSaslResponse(SaslResponse)
Dump(Dump)
Restore(Restore)
RestoreBlock(RestoreBlock)
RestoreEof
Sync
Flush
Terminate
Implementations§
source§impl 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§
source§impl Clone for ClientMessage
impl Clone for ClientMessage
source§fn clone(&self) -> ClientMessage
fn clone(&self) -> ClientMessage
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 ClientMessage
impl Debug for ClientMessage
source§impl PartialEq<ClientMessage> for ClientMessage
impl PartialEq<ClientMessage> for ClientMessage
source§fn 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 ==
.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§
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