pub struct UnpreparedError {
pub id: CBytesShort,
}
Expand description
Can be thrown while a prepared statement tries to be executed if the provided prepared statement ID is not known by this host. [Read more…] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1150)
Fields§
§id: CBytesShort
Unknown ID.
Trait Implementations§
Source§impl Debug for UnpreparedError
impl Debug for UnpreparedError
Source§impl FromCursor for UnpreparedError
impl FromCursor for UnpreparedError
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<UnpreparedError>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<UnpreparedError>
It should return an implementor from an
io::Cursor
over an array of bytes.Auto Trait Implementations§
impl Freeze for UnpreparedError
impl RefUnwindSafe for UnpreparedError
impl Send for UnpreparedError
impl Sync for UnpreparedError
impl Unpin for UnpreparedError
impl UnwindSafe for UnpreparedError
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