#[repr(C)]pub struct SegmentedBufferT {
pub data: *mut c_void,
pub size: u64,
pub next: *mut SegmentedBufferT,
}
Fields§
§data: *mut c_void
§size: u64
§next: *mut SegmentedBufferT
Trait Implementations§
Source§impl Clone for SegmentedBufferT
impl Clone for SegmentedBufferT
Source§fn clone(&self) -> SegmentedBufferT
fn clone(&self) -> SegmentedBufferT
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 Default for SegmentedBufferT
impl Default for SegmentedBufferT
impl Copy for SegmentedBufferT
Auto Trait Implementations§
impl Freeze for SegmentedBufferT
impl RefUnwindSafe for SegmentedBufferT
impl !Send for SegmentedBufferT
impl !Sync for SegmentedBufferT
impl Unpin for SegmentedBufferT
impl UnwindSafe for SegmentedBufferT
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