pub struct FunctionFailureError {
pub keyspace: CString,
pub function: CString,
pub arg_types: CStringList,
}
Expand description
A (user defined) function failed during execution.
Fields§
§keyspace: CString
The keyspace of the failed function.
function: CString
The name of the failed function
arg_types: CStringList
Vec<CString>
one string for each argument type (as CQL type) of the failed function.
Trait Implementations§
Source§impl Debug for FunctionFailureError
impl Debug for FunctionFailureError
Source§impl FromCursor for FunctionFailureError
impl FromCursor for FunctionFailureError
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<FunctionFailureError>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<FunctionFailureError>
It should return an implementor from an
io::Cursor
over an array of bytes.Auto Trait Implementations§
impl Freeze for FunctionFailureError
impl RefUnwindSafe for FunctionFailureError
impl Send for FunctionFailureError
impl Sync for FunctionFailureError
impl Unpin for FunctionFailureError
impl UnwindSafe for FunctionFailureError
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