Struct lcms2::MLU
[−]
pub struct MLU(_);
This represents owned Multi Localized Unicode type. Most methods are implemented on MLURef
.
Methods
impl MLU
[src]
Methods from Deref<Target = MLURef>
pub fn set_text_ascii(&mut self, text: &str, locale: Locale) -> bool
[src]
Fills an ASCII (7 bit) entry for the given Language and country.
pub fn set_text(&mut self, text: &str, locale: Locale) -> bool
[src]
Fills a UNICODE wide char (16 bit) entry for the given Language and country.
pub fn text_ascii(&self, locale: Locale) -> LCMSResult<CString>
[src]
Gets an ASCII (7 bit) entry for the given Language and country.
pub fn text(&self, locale: Locale) -> LCMSResult<String>
[src]
Gets a Unicode entry for the given Language and country
pub fn tanslations(&self) -> Vec<Locale>
[src]
Obtains the translations stored in a given multilocalized unicode object.
pub fn tanslation(&self, locale: Locale) -> LCMSResult<Locale>
[src]
Obtains the translation rule for given multilocalized unicode object.
Trait Implementations
impl ForeignType for MLU
type CType = MLU
The raw C type.
type Ref = MLURef
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut MLU) -> MLU
Constructs an instance of this type from its raw type.
fn as_ptr(&self) -> *mut MLU
Returns a raw pointer to the wrapped value.
impl Drop for MLU
impl Deref for MLU
type Target = MLURef
The resulting type after dereferencing.
fn deref(&self) -> &MLURef
Dereferences the value.