Struct cassandra_protocol::frame::message_error::AlreadyExistsError
source · pub struct AlreadyExistsError {
pub ks: String,
pub table: String,
}
Expand description
The query attempted to create a keyspace or a table that was already existing. Read more…
Fields§
§ks: String
Represents either the keyspace that already exists, or the keyspace in which the table that already exists is.
table: String
Represents the name of the table that already exists.
Trait Implementations§
source§impl Clone for AlreadyExistsError
impl Clone for AlreadyExistsError
source§fn clone(&self) -> AlreadyExistsError
fn clone(&self) -> AlreadyExistsError
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 AlreadyExistsError
impl Debug for AlreadyExistsError
source§impl FromCursor for AlreadyExistsError
impl FromCursor for AlreadyExistsError
source§fn from_cursor(
cursor: &mut Cursor<&[u8]>,
_version: Version
) -> Result<AlreadyExistsError>
fn from_cursor( cursor: &mut Cursor<&[u8]>, _version: Version ) -> Result<AlreadyExistsError>
Tries to parse Self from a cursor of bytes.
source§impl Hash for AlreadyExistsError
impl Hash for AlreadyExistsError
source§impl Ord for AlreadyExistsError
impl Ord for AlreadyExistsError
source§fn cmp(&self, other: &AlreadyExistsError) -> Ordering
fn cmp(&self, other: &AlreadyExistsError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<AlreadyExistsError> for AlreadyExistsError
impl PartialEq<AlreadyExistsError> for AlreadyExistsError
source§fn eq(&self, other: &AlreadyExistsError) -> bool
fn eq(&self, other: &AlreadyExistsError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<AlreadyExistsError> for AlreadyExistsError
impl PartialOrd<AlreadyExistsError> for AlreadyExistsError
source§fn partial_cmp(&self, other: &AlreadyExistsError) -> Option<Ordering>
fn partial_cmp(&self, other: &AlreadyExistsError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more