pub struct Supported {
pub options: HashMap<String, Vec<String>>,
}
Expand description
The CQL protocol-level representation of an SUPPORTED
response,
used to present the server’s supported options.
Fields§
§options: HashMap<String, Vec<String>>
A map of option names to their supported values.
Implementations§
Source§impl Supported
impl Supported
Sourcepub fn deserialize(buf: &mut &[u8]) -> Result<Self, CqlSupportedParseError>
pub fn deserialize(buf: &mut &[u8]) -> Result<Self, CqlSupportedParseError>
Deserializes a SUPPORTED
response from the provided byte buffer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Supported
impl RefUnwindSafe for Supported
impl Send for Supported
impl Sync for Supported
impl Unpin for Supported
impl UnwindSafe for Supported
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> 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