[][src]Struct hdf5_types::VarLenUnicode

#[repr(C)]pub struct VarLenUnicode { /* fields omitted */ }

Methods

impl VarLenUnicode[src]

pub fn new() -> Self[src]

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

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

pub fn as_ptr(&self) -> *const u8[src]

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

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

pub unsafe fn from_str_unchecked<S: Borrow<str>>(s: S) -> Self[src]

Trait Implementations

impl<'a> AsRef<[u8]> for VarLenUnicode[src]

impl<'a> AsRef<str> for VarLenUnicode[src]

impl<'a> Borrow<str> for VarLenUnicode[src]

impl Clone for VarLenUnicode[src]

impl<'a> Debug for VarLenUnicode[src]

impl<'a> Default for VarLenUnicode[src]

impl<'a> Deref for VarLenUnicode[src]

type Target = str

The resulting type after dereferencing.

impl<'a> Display for VarLenUnicode[src]

impl Drop for VarLenUnicode[src]

impl<'a> Eq for VarLenUnicode[src]

impl<'a> From<&'a VarLenUnicode> for &'a [u8][src]

impl<'a> From<&'a VarLenUnicode> for &'a str[src]

impl<'a> From<VarLenUnicode> for String[src]

impl<'a> From<VarLenUnicode> for Vec<u8>[src]

impl FromStr for VarLenUnicode[src]

type Err = StringError

The associated error which can be returned from parsing.

impl H5Type for VarLenUnicode[src]

impl<'a> Hash for VarLenUnicode[src]

impl<'a> Index<RangeFull> for VarLenUnicode[src]

type Output = str

The returned type after indexing.

impl<'a> PartialEq<&'a str> for VarLenUnicode[src]

impl<'a> PartialEq<Cow<'a, str>> for VarLenUnicode[src]

impl<'a> PartialEq<String> for VarLenUnicode[src]

impl<'a> PartialEq<VarLenUnicode> for VarLenUnicode[src]

impl<'a> PartialEq<VarLenUnicode> for str[src]

impl<'a> PartialEq<VarLenUnicode> for &'a str[src]

impl<'a> PartialEq<VarLenUnicode> for String[src]

impl<'a> PartialEq<VarLenUnicode> for Cow<'a, str>[src]

impl<'a> PartialEq<str> for VarLenUnicode[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> 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.