[][src]Struct ptero::method::trailing_unicode::TrailingUnicodeMethod

pub struct TrailingUnicodeMethod<T: UnicodeSet> { /* fields omitted */ }

Trailing unicode encoder for generic Unicode character sets. It uses the UnicodeSet to get the character given the n-bits (where n is the binary logarithm of the set size).

Accepts any Context.

Implementations

impl<T> TrailingUnicodeMethod<T> where
    T: UnicodeSet
[src]

pub fn new(unicode_set: T) -> Self[src]

Trait Implementations

impl<T> Capacity for TrailingUnicodeMethod<T> where
    T: UnicodeSet
[src]

impl<T, D> Decoder<D> for TrailingUnicodeMethod<T> where
    T: UnicodeSet,
    D: Context
[src]

impl Default for TrailingUnicodeMethod<FullUnicodeSet>[src]

impl<T, E> Encoder<E> for TrailingUnicodeMethod<T> where
    T: UnicodeSet,
    E: Context
[src]

impl<T, E, D> Method<E, D> for TrailingUnicodeMethod<T> where
    T: UnicodeSet,
    E: Context,
    D: Context
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for TrailingUnicodeMethod<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for TrailingUnicodeMethod<T> where
    T: Send
[src]

impl<T> Sync for TrailingUnicodeMethod<T> where
    T: Sync
[src]

impl<T> Unpin for TrailingUnicodeMethod<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for TrailingUnicodeMethod<T> where
    T: UnwindSafe
[src]

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,