#[repr(C)]pub struct zvec_string_t {
pub data: *mut c_char,
pub length: usize,
pub capacity: usize,
}Expand description
An owning, mutable string with capacity tracking.
Fields§
§data: *mut c_char§length: usize§capacity: usizeAuto Trait Implementations§
impl !Send for zvec_string_t
impl !Sync for zvec_string_t
impl Freeze for zvec_string_t
impl RefUnwindSafe for zvec_string_t
impl Unpin for zvec_string_t
impl UnsafeUnpin for zvec_string_t
impl UnwindSafe for zvec_string_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