[][src]Struct translit::BulgarianOfficial

pub struct BulgarianOfficial { /* fields omitted */ }

Official system for transliterating Bulgarian

more details: Romanization of Bulgarian #Streamlined system

Attention: Converting back from romanized cyrillic to cyrillic is ambiguous, thus not supported

Examples


use translit::{BulgarianOfficial, ToLatin};
let trasliterator = BulgarianOfficial::new();
let res = trasliterator.to_latin("Разни приказки");
assert_eq!("Razni prikazki", res);

Methods

impl BulgarianOfficial[src]

Trait Implementations

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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