pub struct BodyResResultSetKeyspace {
pub body: CString,
}Expand description
It represents set keyspace result body. Body contains keyspace name.
Fields§
§body: CStringIt contains name of keyspace that was set.
Implementations§
Source§impl BodyResResultSetKeyspace
impl BodyResResultSetKeyspace
Sourcepub fn new(body: CString) -> BodyResResultSetKeyspace
pub fn new(body: CString) -> BodyResResultSetKeyspace
Factory function that takes body value and
returns new instance of BodyResResultSetKeyspace.
Trait Implementations§
Source§impl Debug for BodyResResultSetKeyspace
impl Debug for BodyResResultSetKeyspace
Source§impl FromCursor for BodyResResultSetKeyspace
impl FromCursor for BodyResResultSetKeyspace
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultSetKeyspace>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<BodyResResultSetKeyspace>
It should return an implementor from an
io::Cursor over an array of bytes.Auto Trait Implementations§
impl Freeze for BodyResResultSetKeyspace
impl RefUnwindSafe for BodyResResultSetKeyspace
impl Send for BodyResResultSetKeyspace
impl Sync for BodyResResultSetKeyspace
impl Unpin for BodyResResultSetKeyspace
impl UnwindSafe for BodyResResultSetKeyspace
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