#[repr(C)]pub struct pm_lex_mode__bindgen_ty_2__bindgen_ty_1 {
pub nesting: usize,
pub interpolation: bool,
pub incrementor: u8,
pub terminator: u8,
pub breakpoints: [u8; 11],
}Fields§
§nesting: usizeThis keeps track of the nesting level of the list.
interpolation: boolWhether or not interpolation is allowed in this list.
incrementor: u8When lexing a list, it takes into account balancing the terminator if the terminator is one of (), [], {}, or <>.
terminator: u8This is the terminator of the list literal.
breakpoints: [u8; 11]This is the character set that should be used to delimit the tokens within the list.
Trait Implementations§
Source§impl Clone for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl Clone for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
Source§fn clone(&self) -> pm_lex_mode__bindgen_ty_2__bindgen_ty_1
fn clone(&self) -> pm_lex_mode__bindgen_ty_2__bindgen_ty_1
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 Default for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl Default for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
Source§fn default() -> pm_lex_mode__bindgen_ty_2__bindgen_ty_1
fn default() -> pm_lex_mode__bindgen_ty_2__bindgen_ty_1
Returns the “default value” for a type. Read more
impl Copy for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
Auto Trait Implementations§
impl Freeze for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl RefUnwindSafe for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl Send for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl Sync for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl Unpin for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
impl UnwindSafe for pm_lex_mode__bindgen_ty_2__bindgen_ty_1
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