Struct ucd_trie::TrieSetOwned [] [src]

pub struct TrieSetOwned { /* fields omitted */ }

An owned trie set.

Methods

impl TrieSetOwned
[src]

[src]

Create a new trie set from a set of Unicode scalar values.

This returns an error if a set could not be sufficiently compressed to fit into a trie.

[src]

Create a new trie set from a set of Unicode scalar values.

This returns an error if a set could not be sufficiently compressed to fit into a trie. This also returns an error if any of the given codepoints are greater than 0x10FFFF.

[src]

Return this set as a slice.

[src]

Returns true if and only if the given Unicode scalar value is in this set.

[src]

Returns true if and only if the given codepoint is in this set.

If the given value exceeds the codepoint range (i.e., it's greater than 0x10FFFF), then this returns false.

Trait Implementations

impl Clone for TrieSetOwned
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TrieSetOwned
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TrieSetOwned

impl Sync for TrieSetOwned