[][src]Struct unic_ucd_block::Block

pub struct Block {
    pub range: CharRange,
    pub name: &'static str,
    // some fields omitted
}

A Unicode Block.

Blocks are contiguous range of code points, uniquely named, and have no overlaps.

All Assigned characters have a Block property value, but Reserved characters may or may not have a Block.

Fields

range: CharRange

The Character range of the Block.

name: &'static str

The unique name of the Block.

Methods

impl Block[src]

pub fn of(ch: char) -> Option<Block>[src]

Find the character Block property value.

Trait Implementations

impl Debug for Block[src]

impl Copy for Block[src]

impl Clone for Block[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialCharProperty for Block[src]

Auto Trait Implementations

impl Send for Block

impl Sync for Block

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> PartialCharProperty for T where
    T: TotalCharProperty
[src]