#[repr(C)]pub struct udebug_buf {
pub ctx: *mut udebug,
pub meta: *const udebug_buf_meta,
pub id: u32,
pub list: list_head,
pub hdr: *mut udebug_hdr,
pub data: *mut c_void,
pub data_size: usize,
pub head_size: usize,
pub ring_size: usize,
pub fd: c_int,
}Fields§
§ctx: *mut udebug§meta: *const udebug_buf_meta§id: u32§list: list_head§hdr: *mut udebug_hdr§data: *mut c_void§data_size: usize§head_size: usize§ring_size: usize§fd: c_intTrait Implementations§
Source§impl Clone for udebug_buf
impl Clone for udebug_buf
Source§fn clone(&self) -> udebug_buf
fn clone(&self) -> udebug_buf
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 udebug_buf
impl Debug for udebug_buf
Source§impl Default for udebug_buf
impl Default for udebug_buf
impl Copy for udebug_buf
Auto Trait Implementations§
impl Freeze for udebug_buf
impl RefUnwindSafe for udebug_buf
impl !Send for udebug_buf
impl !Sync for udebug_buf
impl Unpin for udebug_buf
impl UnsafeUnpin for udebug_buf
impl UnwindSafe for udebug_buf
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