[][src]Struct cdrs::types::CBytes

pub struct CBytes { /* fields omitted */ }

The structure that represents Cassandra byte type.

Methods

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 IntoBytes 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 PartialEq<CBytes> for CBytes[src]

impl Clone for CBytes[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for CBytes[src]

impl Debug for CBytes[src]

impl Hash for CBytes[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for CBytes

impl Unpin for CBytes

impl Sync for CBytes

impl UnwindSafe for CBytes

impl RefUnwindSafe for CBytes

Blanket Implementations

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

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

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.

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

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

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