[][src]Struct rust_icu_uenum::Enumeration

pub struct Enumeration { /* fields omitted */ }

Rust wrapper for the UEnumeration iterator.

Implements UEnumeration

Implementations

impl Enumeration[src]

pub fn repr(&mut self) -> *mut UEnumeration[src]

Internal representation, for ICU4C methods that require it.

pub fn empty() -> Self[src]

Creates an empty Enumeration.

Trait Implementations

impl Debug for Enumeration[src]

impl Default for Enumeration[src]

impl Drop for Enumeration[src]

fn drop(&mut self)[src]

Drops the Enumeration, deallocating its internal representation hopefully correctly.

Implements uenum_close

impl Iterator for Enumeration[src]

type Item = Result<String, Error>

The type of the elements being iterated over.

fn next(&mut self) -> Option<Self::Item>[src]

Yields the next element stored in the enumeration.

Implements uenum_next

impl<'_, '_> TryFrom<&'_ [&'_ str]> for Enumeration[src]

Creates an enumeration iterator from a vector of UTF-8 strings.

type Error = Error

The type returned in the event of a conversion error.

fn try_from(v: &[&str]) -> Result<Enumeration, Error>[src]

Constructs an enumeration from a string slice.

Implements uenum_openCharStringsEnumeration

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.