#[non_exhaustive]pub struct UartConfig {
pub baudrate: Rate<u32, 1, 1>,
pub data_bits: DataBits,
pub stop_bits: StopBits,
pub parity: Option<Parity>,
}Expand description
A struct holding the configuration for an UART device.
The Default implementation implements the following values:
ⓘ
UartConfig {
baudrate: Baud(115_200),
data_bits: DataBits::Eight,
stop_bits: StopBits::One,
parity: None,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.baudrate: Rate<u32, 1, 1>The baudrate the uart will run at.
data_bits: DataBitsThe amount of data bits the uart should be configured to.
stop_bits: StopBitsThe amount of stop bits the uart should be configured to.
parity: Option<Parity>The parity that this uart should have
Implementations§
Trait Implementations§
Source§impl Default for UartConfig
impl Default for UartConfig
Source§fn default() -> UartConfig
fn default() -> UartConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UartConfig
impl RefUnwindSafe for UartConfig
impl Send for UartConfig
impl Sync for UartConfig
impl Unpin for UartConfig
impl UnwindSafe for UartConfig
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more