#[repr(C)]pub struct bladerf_image {
pub magic: [c_char; 8],
pub checksum: [u8; 32],
pub version: bladerf_version,
pub timestamp: u64,
pub serial: [c_char; 34],
pub reserved: [c_char; 128],
pub type_: bladerf_image_type,
pub address: u32,
pub length: u32,
pub data: *mut u8,
}Fields§
§magic: [c_char; 8]§checksum: [u8; 32]§version: bladerf_version§timestamp: u64§serial: [c_char; 34]§reserved: [c_char; 128]§type_: bladerf_image_type§address: u32§length: u32§data: *mut u8Trait Implementations§
Source§impl Clone for bladerf_image
impl Clone for bladerf_image
Source§fn clone(&self) -> bladerf_image
fn clone(&self) -> bladerf_image
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 bladerf_image
impl Debug for bladerf_image
impl Copy for bladerf_image
Auto Trait Implementations§
impl Freeze for bladerf_image
impl RefUnwindSafe for bladerf_image
impl !Send for bladerf_image
impl !Sync for bladerf_image
impl Unpin for bladerf_image
impl UnwindSafe for bladerf_image
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