[][src]Struct cdrs_temp::types::CBytes

pub struct CBytes {
    pub bytes: Option<Vec<u8>>,
}

The structure that represents Cassandra byte type.

Fields

bytes: Option<Vec<u8>>

Implementations

impl CBytes[src]

pub fn new(bytes: Vec<u8>) -> CBytes[src]

pub fn new_empty() -> CBytes[src]

Creates Cassandra bytes that represent empty or null value

pub fn into_plain(self) -> Option<Vec<u8>>[src]

Converts CBytes into a plain array of bytes

pub fn as_plain(&self) -> Option<Vec<u8>>[src]

pub fn as_slice(&self) -> Option<&[u8]>[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl Clone for CBytes[src]

impl Debug for CBytes[src]

impl Eq for CBytes[src]

impl FromCursor for CBytes[src]

fn from_cursor(cursor: &mut Cursor<&[u8]>) -> CDRSResult<CBytes>[src]

from_cursor gets Cursor who's position is set such that it should be a start of a [bytes]. It reads required number of bytes and returns a CBytes

impl Hash for CBytes[src]

impl IntoBytes for CBytes[src]

impl PartialEq<CBytes> for CBytes[src]

impl StructuralEq for CBytes[src]

impl StructuralPartialEq for CBytes[src]

Auto Trait Implementations

impl RefUnwindSafe for CBytes

impl Send for CBytes

impl Sync for CBytes

impl Unpin for CBytes

impl UnwindSafe for CBytes

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.