#[repr(C)]pub struct hci_request {
pub ogf: u16,
pub ocf: u16,
pub event: c_int,
pub cparam: *mut c_void,
pub clen: c_int,
pub rparam: *mut c_void,
pub rlen: c_int,
}
Fields§
§ogf: u16
§ocf: u16
§event: c_int
§cparam: *mut c_void
§clen: c_int
§rparam: *mut c_void
§rlen: c_int
Trait Implementations§
Source§impl Clone for hci_request
impl Clone for hci_request
Source§fn clone(&self) -> hci_request
fn clone(&self) -> hci_request
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 hci_request
impl Debug for hci_request
impl Copy for hci_request
Auto Trait Implementations§
impl Freeze for hci_request
impl RefUnwindSafe for hci_request
impl !Send for hci_request
impl !Sync for hci_request
impl Unpin for hci_request
impl UnwindSafe for hci_request
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