#[non_exhaustive]
pub enum ServerMessage {
Show 15 variants
ServerHandshake(ServerHandshake),
UnknownMessage(u8, Bytes),
LogMessage(LogMessage),
ErrorResponse(ErrorResponse),
Authentication(Authentication),
ReadyForCommand(ReadyForCommand),
ServerKeyData(ServerKeyData),
ParameterStatus(ParameterStatus),
CommandComplete(CommandComplete),
PrepareComplete(PrepareComplete),
CommandDataDescription(CommandDataDescription),
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)
CommandComplete(CommandComplete)
PrepareComplete(PrepareComplete)
CommandDataDescription(CommandDataDescription)
Data(Data)
RestoreReady(RestoreReady)
DumpHeader(RawPacket)
DumpBlock(RawPacket)
Implementations
sourceimpl 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
sourceimpl Clone for ServerMessage
impl Clone for ServerMessage
sourcefn clone(&self) -> ServerMessage
fn clone(&self) -> ServerMessage
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 ServerMessage
impl Debug for ServerMessage
sourceimpl PartialEq<ServerMessage> for ServerMessage
impl PartialEq<ServerMessage> for ServerMessage
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ServerMessage) -> bool
fn ne(&self, other: &ServerMessage) -> bool
This method tests for !=
.
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
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