#[non_exhaustive]pub enum ServerMessage {
Show 18 variants
ServerHandshake(ServerHandshake),
UnknownMessage(u8, Bytes),
LogMessage(LogMessage),
ErrorResponse(ErrorResponse),
Authentication(Authentication),
ReadyForCommand(ReadyForCommand),
ServerKeyData(ServerKeyData),
ParameterStatus(ParameterStatus),
CommandComplete0(CommandComplete0),
CommandComplete1(CommandComplete1),
PrepareComplete(PrepareComplete),
CommandDataDescription0(CommandDataDescription0),
CommandDataDescription1(CommandDataDescription1),
StateDataDescription(StateDataDescription),
Data(Data),
RestoreReady(RestoreReady),
DumpHeader(RawPacket),
DumpBlock(RawPacket),
}
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.
ServerHandshake(ServerHandshake)
UnknownMessage(u8, Bytes)
LogMessage(LogMessage)
ErrorResponse(ErrorResponse)
Authentication(Authentication)
ReadyForCommand(ReadyForCommand)
ServerKeyData(ServerKeyData)
ParameterStatus(ParameterStatus)
CommandComplete0(CommandComplete0)
CommandComplete1(CommandComplete1)
PrepareComplete(PrepareComplete)
CommandDataDescription0(CommandDataDescription0)
CommandDataDescription1(CommandDataDescription1)
StateDataDescription(StateDataDescription)
Data(Data)
RestoreReady(RestoreReady)
DumpHeader(RawPacket)
DumpBlock(RawPacket)
Implementations§
source§impl ServerMessage
impl ServerMessage
pub fn encode(&self, buf: &mut Output<'_>) -> Result<(), EncodeError>
sourcepub fn decode(buf: &mut Input) -> Result<ServerMessage, DecodeError>
pub fn decode(buf: &mut Input) -> Result<ServerMessage, 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 ServerMessage
impl Clone for ServerMessage
source§fn clone(&self) -> ServerMessage
fn clone(&self) -> ServerMessage
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 ServerMessage
impl Debug for ServerMessage
source§impl PartialEq<ServerMessage> for ServerMessage
impl PartialEq<ServerMessage> for ServerMessage
source§fn eq(&self, other: &ServerMessage) -> bool
fn eq(&self, other: &ServerMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ServerMessage
impl StructuralEq for ServerMessage
impl StructuralPartialEq for ServerMessage
Auto Trait Implementations§
impl RefUnwindSafe for ServerMessage
impl Send for ServerMessage
impl Sync for ServerMessage
impl Unpin for ServerMessage
impl UnwindSafe for ServerMessage
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