#[non_exhaustive]#[repr(u32)]pub enum BaudRate {
Show 31 variants
B0 = 0,
B50 = 1,
B75 = 2,
B110 = 3,
B134 = 4,
B150 = 5,
B200 = 6,
B300 = 7,
B600 = 8,
B1200 = 9,
B1800 = 10,
B2400 = 11,
B4800 = 12,
B9600 = 13,
B19200 = 14,
B38400 = 15,
B57600 = 4_097,
B115200 = 4_098,
B230400 = 4_099,
B460800 = 4_100,
B500000 = 4_101,
B576000 = 4_102,
B921600 = 4_103,
B1000000 = 4_104,
B1152000 = 4_105,
B1500000 = 4_106,
B2000000 = 4_107,
B2500000 = 4_108,
B3000000 = 4_109,
B3500000 = 4_110,
B4000000 = 4_111,
}
Expand description
Baud rates supported by the system.
For the BSDs, arbitrary baud rates can be specified by using u32
s directly instead of this
enum.
B0 is special and will disable the port.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
B0 = 0
B50 = 1
B75 = 2
B110 = 3
B134 = 4
B150 = 5
B200 = 6
B300 = 7
B600 = 8
B1200 = 9
B1800 = 10
B2400 = 11
B4800 = 12
B9600 = 13
B19200 = 14
B38400 = 15
B57600 = 4_097
B115200 = 4_098
B230400 = 4_099
B460800 = 4_100
B500000 = 4_101
B576000 = 4_102
B921600 = 4_103
B1000000 = 4_104
B1152000 = 4_105
B1500000 = 4_106
B2000000 = 4_107
B2500000 = 4_108
B3000000 = 4_109
B3500000 = 4_110
B4000000 = 4_111
Trait Implementations§
source§impl Ord for BaudRate
impl Ord for BaudRate
source§impl PartialOrd for BaudRate
impl PartialOrd for BaudRate
impl Copy for BaudRate
impl Eq for BaudRate
impl StructuralPartialEq for BaudRate
Auto Trait Implementations§
impl Freeze for BaudRate
impl RefUnwindSafe for BaudRate
impl Send for BaudRate
impl Sync for BaudRate
impl Unpin for BaudRate
impl UnwindSafe for BaudRate
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)