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: StringRepresents either the keyspace that already exists, or the keyspace in which the table that already exists is.
table: StringRepresents 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 for AlreadyExistsError
impl PartialEq 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 for AlreadyExistsError
impl PartialOrd 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 moresource§impl Serialize for AlreadyExistsError
impl Serialize for AlreadyExistsError
impl Eq for AlreadyExistsError
impl StructuralPartialEq for AlreadyExistsError
Auto Trait Implementations§
impl Freeze for AlreadyExistsError
impl RefUnwindSafe for AlreadyExistsError
impl Send for AlreadyExistsError
impl Sync for AlreadyExistsError
impl Unpin for AlreadyExistsError
impl UnwindSafe for AlreadyExistsError
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