#[repr(C)]pub struct peripheral_C {
pub name: [c_char; 64],
pub description: [c_char; 1000],
pub banksNbr: c_uint,
pub banks: *mut *mut bank_C,
}
Expand description
\struct peripheral_C \brief Get peripheral option bytes general informations.
Fields§
§name: [c_char; 64]
< Peripheral name.
description: [c_char; 1000]
< Peripheral description.
banksNbr: c_uint
< Number of existed banks.
banks: *mut *mut bank_C
< Get banks descriptions #Bank_C.
Trait Implementations§
Source§impl Clone for peripheral_C
impl Clone for peripheral_C
Source§fn clone(&self) -> peripheral_C
fn clone(&self) -> peripheral_C
Returns a copy 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 peripheral_C
impl Debug for peripheral_C
impl Copy for peripheral_C
Auto Trait Implementations§
impl Freeze for peripheral_C
impl RefUnwindSafe for peripheral_C
impl !Send for peripheral_C
impl !Sync for peripheral_C
impl Unpin for peripheral_C
impl UnwindSafe for peripheral_C
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