[]Struct gokien::engine::GkEngine

pub struct GkEngine { /* fields omitted */ }

Methods

impl GkEngine

Creates a new empty GkEngine.

Given that the GkEngine is empty, this will not allocate any initial buffer. While that means that this initial operation is very inexpensive, it may cause excessive allocation later when you add data. If you have an idea of how much data the GkEngine will hold, consider the with_capacity method to prevent excessive re-allocation.

Examples

Basic usage:

let s = GkEngine::new();Run

Change output charset: UTF-8, VIQR. Translate directly a byte slice to Vietnamese String. Do NOT reserve previous state.

Trait Implementations

impl Default for GkEngine

impl Debug for GkEngine

Auto Trait Implementations

impl Send for GkEngine

impl Sync for GkEngine

Blanket Implementations

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

impl<T> From for T
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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