#[repr(C)]pub enum cetype_t {
CE_NATIVE = 0,
CE_UTF8 = 1,
CE_LATIN1 = 2,
CE_BYTES = 3,
CE_SYMBOL = 5,
CE_ANY = 99,
}Expand description
Character encoding tag used by CHARSXP constructors.
Variants§
CE_NATIVE = 0
Native locale encoding.
CE_UTF8 = 1
UTF-8 encoding.
CE_LATIN1 = 2
Latin-1 encoding.
CE_BYTES = 3
Raw bytes encoding.
CE_SYMBOL = 5
Symbol encoding marker.
CE_ANY = 99
Any encoding accepted.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for cetype_t
impl RefUnwindSafe for cetype_t
impl Send for cetype_t
impl Sync for cetype_t
impl Unpin for cetype_t
impl UnsafeUnpin for cetype_t
impl UnwindSafe for cetype_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more