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