[][src]Struct icbiadb::types::bv::bvstring::BvString

pub struct BvString(_);

Methods

impl BvString[src]

pub fn new() -> Self[src]

pub fn from(v: Vec<u8>) -> Self[src]

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

pub fn as_str(&self) -> &str[src]

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

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

pub fn len(&self) -> usize[src]

pub fn iter(&self) -> Iter<u8>[src]

Trait Implementations

impl<'_> BvContains<&'_ [u8]> for BvString[src]

impl<'_> BvContains<&'_ str> for BvString[src]

impl<'_> BvEndsWith<&'_ [u8]> for BvString[src]

impl<'_> BvEndsWith<&'_ str> for BvString[src]

impl<'_> BvStartsWith<&'_ [u8]> for BvString[src]

impl<'_> BvStartsWith<&'_ str> for BvString[src]

impl Clone for BvString[src]

impl Debug for BvString[src]

impl<'de> Deserialize<'de> for BvString[src]

impl Display for BvString[src]

impl Eq for BvString[src]

impl<'_> From<&'_ [u8]> for BvString[src]

impl<'_> From<&'_ BvString> for BvString[src]

impl<'_> From<&'_ String> for BvString[src]

impl<'_> From<&'_ str> for BvString[src]

impl From<String> for BvString[src]

impl From<Vec<u8>> for BvString[src]

impl Hash for BvString[src]

impl Index<Range<usize>> for BvString[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeFrom<usize>> for BvString[src]

type Output = [u8]

The returned type after indexing.

impl Index<RangeTo<usize>> for BvString[src]

type Output = [u8]

The returned type after indexing.

impl Index<usize> for BvString[src]

type Output = u8

The returned type after indexing.

impl<'_> PartialEq<&'_ [u8]> for BvString[src]

impl<'_> PartialEq<&'_ BvString> for ByteVec[src]

impl<'_> PartialEq<&'_ String> for BvString[src]

impl<'_> PartialEq<&'_ str> for BvString[src]

impl PartialEq<[u8]> for BvString[src]

impl PartialEq<BvString> for BvString[src]

impl PartialEq<BvString> for ByteVec[src]

impl PartialEq<String> for BvString[src]

impl<'_> PartialEq<String> for &'_ BvString[src]

impl PartialEq<str> for BvString[src]

impl Serialize for BvString[src]

impl StructuralEq for BvString[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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> ToString for T where
    T: Display + ?Sized
[src]

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.