pub struct UartInfo {
pub name: &'static str,
pub register_base: usize,
pub initial_baudrate: u32,
}Expand description
Immutable information reported by a concrete UART before it is split.
Fields§
§name: &'static str§register_base: usize§initial_baudrate: u32Trait Implementations§
impl Copy for UartInfo
impl Eq for UartInfo
impl StructuralPartialEq for UartInfo
Auto Trait Implementations§
impl Freeze for UartInfo
impl RefUnwindSafe for UartInfo
impl Send for UartInfo
impl Sync for UartInfo
impl Unpin for UartInfo
impl UnsafeUnpin for UartInfo
impl UnwindSafe for UartInfo
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