[][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 H5Type for VarLenUnicode[src]

impl<'a> Default for VarLenUnicode[src]

impl Drop for VarLenUnicode[src]

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

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

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Clone for VarLenUnicode[src]

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

Performs copy-assignment from source. Read more

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

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

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

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

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

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

impl<'a> Eq for VarLenUnicode[src]

impl<'a> Hash for VarLenUnicode[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

impl<'a> Debug for VarLenUnicode[src]

impl<'a> Display for VarLenUnicode[src]

impl FromStr for VarLenUnicode[src]

type Err = Error

The associated error which can be returned from parsing.

impl<'a> Deref for VarLenUnicode[src]

type Target = str

The resulting type after dereferencing.

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

type Output = str

The returned type after indexing.

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[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.

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

impl<T, V> SliceConcat<T> for V where
    T: Clone,
    V: Borrow<[T]>, 
[src]

type Output = Vec<T>

🔬 This is a nightly-only experimental API. (slice_concat_trait)

The resulting type after concatenation

impl<S> SliceConcat<str> for S where
    S: Borrow<str>, 
[src]

type Output = String

🔬 This is a nightly-only experimental API. (slice_concat_trait)

The resulting type after concatenation

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

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