#[repr(C)]pub struct es_string_token_t {
pub length: size_t,
pub data: *const c_char,
}Available on macOS only.
Expand description
Structure for handling strings
Fields§
§length: size_tSize of the data field, equivalent to strlen()
data: *const c_charImplementations§
Source§impl es_string_token_t
impl es_string_token_t
Auto Trait Implementations§
impl Freeze for es_string_token_t
impl RefUnwindSafe for es_string_token_t
impl !Send for es_string_token_t
impl !Sync for es_string_token_t
impl Unpin for es_string_token_t
impl UnwindSafe for es_string_token_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