pub struct Blob(/* private fields */);
Expand description
Special type that represents Cassandra blob type.
Implementations§
Trait Implementations§
Source§impl FromCdrs for Blob
impl FromCdrs for Blob
fn from_cdrs<T>(cdrs_type: T) -> CdrsResult<Option<Self>>where
Self: Sized,
T: AsRustType<Self>,
fn from_cdrs_r<T>(cdrs_type: T) -> CdrsResult<Self>where
Self: Sized,
T: AsRustType<Self>,
Source§impl FromCdrsByName for Blob
impl FromCdrsByName for Blob
fn from_cdrs_by_name<T>(cdrs_type: &T, name: &str) -> CdrsResult<Option<Self>>
fn from_cdrs_r<T>(cdrs_type: &T, name: &str) -> CdrsResult<Self>
Source§impl IntoRustByIndex<Blob> for Row
impl IntoRustByIndex<Blob> for Row
fn get_by_index(&self, index: usize) -> Result<Option<Blob>>
fn get_r_by_index(&self, index: usize) -> CDRSResult<R>
Source§impl IntoRustByIndex<Blob> for Tuple
impl IntoRustByIndex<Blob> for Tuple
fn get_by_index(&self, index: usize) -> Result<Option<Blob>>
fn get_r_by_index(&self, index: usize) -> CDRSResult<R>
Source§impl IntoRustByName<Blob> for Row
impl IntoRustByName<Blob> for Row
fn get_by_name(&self, name: &str) -> Result<Option<Blob>>
fn get_r_by_name(&self, name: &str) -> CDRSResult<R>
Source§impl IntoRustByName<Blob> for Udt
impl IntoRustByName<Blob> for Udt
fn get_by_name(&self, name: &str) -> Result<Option<Blob>>
fn get_r_by_name(&self, name: &str) -> CDRSResult<R>
impl Eq for Blob
impl StructuralPartialEq for Blob
Auto Trait Implementations§
impl Freeze for Blob
impl RefUnwindSafe for Blob
impl Send for Blob
impl Sync for Blob
impl Unpin for Blob
impl UnwindSafe for Blob
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more