Enum ucd_trie::Error [] [src]

pub enum Error {
    InvalidCodepoint(u32),
    GaveUp,
}

An error that can occur during construction of a trie.

Variants

This error is returned when an invalid codepoint is given to TrieSetOwned::from_codepoints. An invalid codepoint is a u32 that is greater than 0x10FFFF.

This error is returned when a set of Unicode codepoints could not be sufficiently compressed into the trie provided by this crate. There is no work-around for this error at this time.

Trait Implementations

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error