#[repr(C)]pub struct ecs_strbuf_element {
pub buffer_embedded: bool,
pub pos: i32,
pub buf: *mut c_char,
pub next: *mut ecs_strbuf_element,
}Fields§
§buffer_embedded: bool§pos: i32§buf: *mut c_char§next: *mut ecs_strbuf_elementTrait Implementations§
Source§impl Clone for ecs_strbuf_element
impl Clone for ecs_strbuf_element
Source§fn clone(&self) -> ecs_strbuf_element
fn clone(&self) -> ecs_strbuf_element
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 ecs_strbuf_element
impl Debug for ecs_strbuf_element
impl Copy for ecs_strbuf_element
Auto Trait Implementations§
impl Freeze for ecs_strbuf_element
impl RefUnwindSafe for ecs_strbuf_element
impl !Send for ecs_strbuf_element
impl !Sync for ecs_strbuf_element
impl Unpin for ecs_strbuf_element
impl UnwindSafe for ecs_strbuf_element
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