[][src]Struct hdf5_types::FixedUnicode

#[repr(C)]
pub struct FixedUnicode<A: Array<Item = u8>> { /* fields omitted */ }

Methods

impl<A: Array<Item = u8>> FixedUnicode<A>[src]

pub fn new() -> Self[src]

pub fn capacity() -> usize[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, A: Array<Item = u8>> AsRef<[u8]> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> AsRef<str> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Borrow<str> for FixedUnicode<A>[src]

impl<A: Array<Item = u8>> Clone for FixedUnicode<A>[src]

impl<A: Copy + Array<Item = u8>> Copy for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Debug for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Default for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Deref for FixedUnicode<A>[src]

type Target = str

The resulting type after dereferencing.

impl<'a, A: Array<Item = u8>> Display for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Eq for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> From<&'a FixedUnicode<A>> for &'a [u8][src]

impl<'a, A: Array<Item = u8>> From<&'a FixedUnicode<A>> for &'a str[src]

impl<'a, A: Array<Item = u8>> From<FixedUnicode<A>> for String[src]

impl<'a, A: Array<Item = u8>> From<FixedUnicode<A>> for Vec<u8>[src]

impl<A> FromStr for FixedUnicode<A> where
    A: Array<Item = u8>, 
[src]

type Err = StringError

The associated error which can be returned from parsing.

impl<A: Array<Item = u8>> H5Type for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Hash for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> Index<RangeFull> for FixedUnicode<A>[src]

type Output = str

The returned type after indexing.

impl<'a, A: Array<Item = u8>> PartialEq<&'a str> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> PartialEq<Cow<'a, str>> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> PartialEq<FixedUnicode<A>> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> PartialEq<FixedUnicode<A>> for str[src]

impl<'a, A: Array<Item = u8>> PartialEq<FixedUnicode<A>> for &'a str[src]

impl<'a, A: Array<Item = u8>> PartialEq<FixedUnicode<A>> for String[src]

impl<'a, A: Array<Item = u8>> PartialEq<FixedUnicode<A>> for Cow<'a, str>[src]

impl<'a, A: Array<Item = u8>> PartialEq<String> for FixedUnicode<A>[src]

impl<'a, A: Array<Item = u8>> PartialEq<str> for FixedUnicode<A>[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for FixedUnicode<A> where
    A: RefUnwindSafe

impl<A> Send for FixedUnicode<A> where
    A: Send

impl<A> Sync for FixedUnicode<A> where
    A: Sync

impl<A> Unpin for FixedUnicode<A> where
    A: Unpin

impl<A> UnwindSafe for FixedUnicode<A> where
    A: UnwindSafe

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.