[][src]Struct gettext::ParseOptions

pub struct ParseOptions { /* fields omitted */ }

ParseOptions allows setting options for parsing MO catalogs.

Examples

This example is not tested
use std::fs::File;
use encoding::all::ISO_8859_1;

let file = File::open("french.mo").unwrap();
let catalog = ParseOptions::new().force_encoding(ISO_8859_1).parse(file).unwrap();

Methods

impl ParseOptions[src]

pub fn new() -> Self[src]

Returns a new instance of ParseOptions with default options.

pub fn parse<R: Read>(self, reader: R) -> Result<Catalog, Error>[src]

Tries to parse the catalog from the given reader using the specified options.

pub fn force_encoding(self, encoding: EncodingRef) -> Self[src]

Forces a use of a specific encoding when parsing strings from a catalog. If this option is not enabled, the parser tries to use the encoding specified in the metadata or UTF-8 if metadata is non-existent.

pub fn force_plural(self, plural: fn(_: u64) -> usize) -> Self[src]

Forces a use of the given plural formula for deciding the proper plural form for a message. If this option is not enabled, the parser tries to use the plural formula specified in the metadata or n != 1 if metadata is non-existent.

Trait Implementations

impl Default for ParseOptions[src]

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

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

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