pub struct AlreadyExistsError {
pub ks: CString,
pub table: CString,
}Expand description
The query attempted to create a keyspace or a table that was already existing. Read more…
Fields§
§ks: CStringRepresents either the keyspace that already exists, or the keyspace in which the table that already exists is.
table: CStringRepresents the name of the table that already exists.
Trait Implementations§
Source§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]>) -> Result<AlreadyExistsError>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<AlreadyExistsError>
It should return an implementor from an
io::Cursor over an array of bytes.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