#[repr(C)]pub struct CToken {
pub type_: *mut c_char,
pub value: *mut u8,
pub string: *mut c_char,
pub length: *mut u8,
}Expand description
@brief Token struct @param type The type of the token @param value value The value of the token @param string the Token as String. @param length The length of the token
Fields§
§type_: *mut c_char§value: *mut u8§string: *mut c_char§length: *mut u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for CToken
impl RefUnwindSafe for CToken
impl !Send for CToken
impl !Sync for CToken
impl Unpin for CToken
impl UnwindSafe for CToken
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