#[non_exhaustive]pub enum ResponseBody {
Error(ErrorBody),
Ready,
Authenticate(BodyResAuthenticate),
Supported(BodyResSupported),
Result(ResResultBody),
Event(BodyResEvent),
AuthChallenge(BodyResAuthChallenge),
AuthSuccess(BodyReqAuthSuccess),
}
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.
Error(ErrorBody)
Ready
Authenticate(BodyResAuthenticate)
Supported(BodyResSupported)
Result(ResResultBody)
Event(BodyResEvent)
AuthChallenge(BodyResAuthChallenge)
AuthSuccess(BodyReqAuthSuccess)
Implementations§
Source§impl ResponseBody
impl ResponseBody
pub fn try_from( bytes: &[u8], response_type: Opcode, version: Version, ) -> Result<ResponseBody>
pub fn into_rows(self) -> Option<Vec<Row>>
pub fn as_rows_metadata(&self) -> Option<&RowsMetadata>
pub fn as_cols(&self) -> Option<&BodyResResultRows>
Sourcepub fn into_prepared(self) -> Option<BodyResResultPrepared>
pub fn into_prepared(self) -> Option<BodyResResultPrepared>
Unwraps body and returns BodyResResultPrepared which contains an exact result of PREPARE query.
Sourcepub fn into_set_keyspace(self) -> Option<BodyResResultSetKeyspace>
pub fn into_set_keyspace(self) -> Option<BodyResResultSetKeyspace>
Unwraps body and returns BodyResResultPrepared which contains an exact result of use keyspace query.
Sourcepub fn into_server_event(self) -> Option<BodyResEvent>
pub fn into_server_event(self) -> Option<BodyResEvent>
Unwraps body and returns BodyResEvent.
pub fn authenticator(&self) -> Option<&str>
pub fn into_error(self) -> Option<ErrorBody>
Trait Implementations§
Source§impl Clone for ResponseBody
impl Clone for ResponseBody
Source§fn clone(&self) -> ResponseBody
fn clone(&self) -> ResponseBody
Returns a duplicate 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 ResponseBody
impl Debug for ResponseBody
Source§impl PartialEq for ResponseBody
impl PartialEq for ResponseBody
impl Eq for ResponseBody
impl StructuralPartialEq for ResponseBody
Auto Trait Implementations§
impl Freeze for ResponseBody
impl RefUnwindSafe for ResponseBody
impl Send for ResponseBody
impl Sync for ResponseBody
impl Unpin for ResponseBody
impl UnwindSafe for ResponseBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more