pub struct UartConfiguration {
pub underlying_instance: String,
pub baud_rate: Option<u32>,
pub parity: Option<UartParity>,
pub stop_bits: Option<UartStopBits>,
pub alias_of: Option<String>,
}
Fields§
§underlying_instance: String
§baud_rate: Option<u32>
§parity: Option<UartParity>
§stop_bits: Option<UartStopBits>
§alias_of: Option<String>
Trait Implementations§
Source§impl Debug for UartConfiguration
impl Debug for UartConfiguration
Source§impl Default for UartConfiguration
impl Default for UartConfiguration
Source§fn default() -> UartConfiguration
fn default() -> UartConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UartConfiguration
impl RefUnwindSafe for UartConfiguration
impl Send for UartConfiguration
impl Sync for UartConfiguration
impl Unpin for UartConfiguration
impl UnwindSafe for UartConfiguration
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