#[repr(u32)]pub enum GAsciiType {
G_ASCII_ALNUM = 1,
G_ASCII_ALPHA = 2,
G_ASCII_CNTRL = 4,
G_ASCII_DIGIT = 8,
G_ASCII_GRAPH = 16,
G_ASCII_LOWER = 32,
G_ASCII_PRINT = 64,
G_ASCII_PUNCT = 128,
G_ASCII_SPACE = 256,
G_ASCII_UPPER = 512,
G_ASCII_XDIGIT = 1_024,
}Variants§
G_ASCII_ALNUM = 1
G_ASCII_ALPHA = 2
G_ASCII_CNTRL = 4
G_ASCII_DIGIT = 8
G_ASCII_GRAPH = 16
G_ASCII_LOWER = 32
G_ASCII_PRINT = 64
G_ASCII_PUNCT = 128
G_ASCII_SPACE = 256
G_ASCII_UPPER = 512
G_ASCII_XDIGIT = 1_024
Trait Implementations§
Source§impl Clone for GAsciiType
impl Clone for GAsciiType
Source§fn clone(&self) -> GAsciiType
fn clone(&self) -> GAsciiType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GAsciiType
impl Debug for GAsciiType
Source§impl Hash for GAsciiType
impl Hash for GAsciiType
Source§impl PartialEq for GAsciiType
impl PartialEq for GAsciiType
impl Copy for GAsciiType
impl Eq for GAsciiType
impl StructuralPartialEq for GAsciiType
Auto Trait Implementations§
impl Freeze for GAsciiType
impl RefUnwindSafe for GAsciiType
impl Send for GAsciiType
impl Sync for GAsciiType
impl Unpin for GAsciiType
impl UnwindSafe for GAsciiType
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