1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
use std::error::Error as StdError; use std::fmt; use std::io; use std::time::Duration; pub use BaudRate::*; pub use CharSize::*; pub use Parity::*; pub use StopBits::*; pub use FlowControl::*; /// A module that exports traits that are useful to have in scope. /// /// It is intended to be glob imported: /// /// ```no_run /// use serial_core::prelude::*; /// ``` pub mod prelude { pub use {SerialPort, SerialPortSettings}; } /// A type for results generated by interacting with serial ports. /// /// The `Err` type is hard-wired to [`serial_core::Error`](struct.Error.html). pub type Result<T> = std::result::Result<T, Error>; /// Categories of errors that can occur when interacting with serial ports. /// /// This list is intended to grow over time and it is not recommended to exhaustively match against /// it. #[derive(Debug,Clone,Copy,PartialEq,Eq)] pub enum ErrorKind { /// The device is not available. /// /// This could indicate that the device is in use by another process or was disconnected while /// performing I/O. NoDevice, /// A parameter was incorrect. InvalidInput, /// An I/O error occured. /// /// The type of I/O error is determined by the inner `io::ErrorKind`. Io(io::ErrorKind), } /// An error type for serial port operations. #[derive(Debug)] pub struct Error { kind: ErrorKind, description: String, } impl Error { pub fn new<T: Into<String>>(kind: ErrorKind, description: T) -> Self { Error { kind: kind, description: description.into(), } } /// Returns the corresponding `ErrorKind` for this error. pub fn kind(&self) -> ErrorKind { self.kind } } impl fmt::Display for Error { fn fmt(&self, fmt: &mut fmt::Formatter) -> std::result::Result<(), fmt::Error> { fmt.write_str(&self.description) } } impl StdError for Error { fn description(&self) -> &str { &self.description } } impl From<io::Error> for Error { fn from(io_error: io::Error) -> Error { Error::new(ErrorKind::Io(io_error.kind()), format!("{}", io_error)) } } impl From<Error> for io::Error { fn from(error: Error) -> io::Error { let kind = match error.kind { ErrorKind::NoDevice => io::ErrorKind::NotFound, ErrorKind::InvalidInput => io::ErrorKind::InvalidInput, ErrorKind::Io(kind) => kind, }; io::Error::new(kind, error.description) } } /// Serial port baud rates. /// /// ## Portability /// /// The `BaudRate` variants with numeric suffixes, e.g., `Baud9600`, indicate standard baud rates /// that are widely-supported on many systems. While non-standard baud rates can be set with /// `BaudOther`, their behavior is system-dependent. Some systems may not support arbitrary baud /// rates. Using the standard baud rates is more likely to result in portable applications. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub enum BaudRate { /// 110 baud. Baud110, /// 300 baud. Baud300, /// 600 baud. Baud600, /// 1200 baud. Baud1200, /// 2400 baud. Baud2400, /// 4800 baud. Baud4800, /// 9600 baud. Baud9600, /// 19,200 baud. Baud19200, /// 38,400 baud. Baud38400, /// 57,600 baud. Baud57600, /// 115,200 baud. Baud115200, /// Non-standard baud rates. /// /// `BaudOther` can be used to set non-standard baud rates by setting its member to be the /// desired baud rate. /// /// ```no_run /// serial_core::BaudOther(4_000_000); // 4,000,000 baud /// ``` /// /// Non-standard baud rates may not be supported on all systems. BaudOther(usize), } impl BaudRate { /// Creates a `BaudRate` for a particular speed. /// /// This function can be used to select a `BaudRate` variant from an integer containing the /// desired baud rate. /// /// ## Example /// /// ``` /// # use serial_core::BaudRate; /// assert_eq!(BaudRate::Baud9600, BaudRate::from_speed(9600)); /// assert_eq!(BaudRate::Baud115200, BaudRate::from_speed(115200)); /// assert_eq!(BaudRate::BaudOther(4000000), BaudRate::from_speed(4000000)); /// ``` pub fn from_speed(speed: usize) -> BaudRate { match speed { 110 => BaudRate::Baud110, 300 => BaudRate::Baud300, 600 => BaudRate::Baud600, 1200 => BaudRate::Baud1200, 2400 => BaudRate::Baud2400, 4800 => BaudRate::Baud4800, 9600 => BaudRate::Baud9600, 19200 => BaudRate::Baud19200, 38400 => BaudRate::Baud38400, 57600 => BaudRate::Baud57600, 115200 => BaudRate::Baud115200, n => BaudRate::BaudOther(n), } } /// Returns the baud rate as an integer. /// /// ## Example /// /// ``` /// # use serial_core::BaudRate; /// assert_eq!(9600, BaudRate::Baud9600.speed()); /// assert_eq!(115200, BaudRate::Baud115200.speed()); /// assert_eq!(4000000, BaudRate::BaudOther(4000000).speed()); /// ``` pub fn speed(&self) -> usize { match *self { BaudRate::Baud110 => 110, BaudRate::Baud300 => 300, BaudRate::Baud600 => 600, BaudRate::Baud1200 => 1200, BaudRate::Baud2400 => 2400, BaudRate::Baud4800 => 4800, BaudRate::Baud9600 => 9600, BaudRate::Baud19200 => 19200, BaudRate::Baud38400 => 38400, BaudRate::Baud57600 => 57600, BaudRate::Baud115200 => 115200, BaudRate::BaudOther(n) => n, } } } /// Number of bits per character. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub enum CharSize { /// 5 bits per character. Bits5, /// 6 bits per character. Bits6, /// 7 bits per character. Bits7, /// 8 bits per character. Bits8, } /// Parity checking modes. /// /// When parity checking is enabled (`ParityOdd` or `ParityEven`) an extra bit is transmitted with /// each character. The value of the parity bit is arranged so that the number of 1 bits in the /// character (including the parity bit) is an even number (`ParityEven`) or an odd number /// (`ParityOdd`). /// /// Parity checking is disabled by setting `ParityNone`, in which case parity bits are not /// transmitted. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub enum Parity { /// No parity bit. ParityNone, /// Parity bit sets odd number of 1 bits. ParityOdd, /// Parity bit sets even number of 1 bits. ParityEven, } /// Number of stop bits. /// /// Stop bits are transmitted after every character. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub enum StopBits { /// One stop bit. Stop1, /// Two stop bits. Stop2, } /// Flow control modes. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub enum FlowControl { /// No flow control. FlowNone, /// Flow control using XON/XOFF bytes. FlowSoftware, /// Flow control using RTS/CTS signals. FlowHardware, } /// A trait for implementing serial devices. /// /// This trait is meant to be used to implement new serial port devices. To use a serial port /// device, the [`SerialPort`](trait.SerialPort.html) trait should be used instead. Any type that /// implements the `SerialDevice` trait will automatically implement the `SerialPort` trait as /// well. /// /// To implement a new serial port device, it's necessary to define a type that can manipulate the /// serial port device's settings (baud rate, parity mode, etc). This type is defined by the /// `Settings` associated type. The current settings should be determined by reading from the /// hardware or operating system for every call to `read_settings()`. The settings can then be /// manipulated in memory before being commited to the device with `write_settings()`. /// /// Types that implement `SerialDevice` must also implement `std::io::Read` and `std::io::Write`. /// The `read()` and `write()` operations of these traits should honor the timeout that has been /// set with the most recent successful call to `set_timeout()`. This timeout value should also be /// accessible by calling the `timeout()` method. /// /// A serial port device should also provide access to some basic control signals: RTS, DTR, CTS, /// DSR, RI, and CD. The values for the control signals are represented as boolean values, with /// `true` indicating the the control signal is active. /// /// Lastly, types that implement `SerialDevice` should release any acquired resources when dropped. pub trait SerialDevice: io::Read + io::Write { /// A type that implements the settings for the serial port device. /// /// The `Settings` type is used to retrieve and modify the serial port's settings. This type /// should own any native structures used to manipulate the device's settings, but it should /// not cause any changes in the underlying hardware until written to the device with /// `write_settings()`. type Settings: SerialPortSettings; /// Returns the device's current settings. /// /// This function attempts to read the current settings from the hardware. The hardware's /// current settings may not match the settings that were most recently written to the hardware /// with `write_settings()`. /// /// ## Errors /// /// This function returns an error if the settings could not be read from the underlying /// hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_settings(&self) -> ::Result<Self::Settings>; /// Applies new settings to the serial device. /// /// This function attempts to apply all settings to the serial device. Some settings may not be /// supported by the underlying hardware, in which case the result is dependent on the /// implementation. A successful return value does not guarantee that all settings were /// appliied successfully. To check which settings were applied by a successful write, /// applications should use the `read_settings()` method to obtain the latest configuration /// state from the device. /// /// ## Errors /// /// This function returns an error if the settings could not be applied to the underlying /// hardware: /// /// * `NoDevice` if the device was disconnected. /// * `InvalidInput` if a setting is not compatible with the underlying hardware. /// * `Io` for any other type of I/O error. fn write_settings(&mut self, settings: &Self::Settings) -> ::Result<()>; /// Returns the current timeout. fn timeout(&self) -> Duration; /// Sets the timeout for future I/O operations. fn set_timeout(&mut self, timeout: Duration) -> ::Result<()>; /// Sets the state of the RTS (Request To Send) control signal. /// /// Setting a value of `true` asserts the RTS control signal. `false` clears the signal. /// /// ## Errors /// /// This function returns an error if the RTS control signal could not be set to the desired /// state on the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn set_rts(&mut self, level: bool) -> ::Result<()>; /// Sets the state of the DTR (Data Terminal Ready) control signal. /// /// Setting a value of `true` asserts the DTR control signal. `false` clears the signal. /// /// ## Errors /// /// This function returns an error if the DTR control signal could not be set to the desired /// state on the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn set_dtr(&mut self, level: bool) -> ::Result<()>; /// Reads the state of the CTS (Clear To Send) control signal. /// /// This function returns a boolean that indicates whether the CTS control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the CTS control signal could not be read /// from the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_cts(&mut self) -> ::Result<bool>; /// Reads the state of the DSR (Data Set Ready) control signal. /// /// This function returns a boolean that indicates whether the DSR control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the DSR control signal could not be read /// from the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_dsr(&mut self) -> ::Result<bool>; /// Reads the state of the RI (Ring Indicator) control signal. /// /// This function returns a boolean that indicates whether the RI control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the RI control signal could not be read from /// the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_ri(&mut self) -> ::Result<bool>; /// Reads the state of the CD (Carrier Detect) control signal. /// /// This function returns a boolean that indicates whether the CD control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the CD control signal could not be read from /// the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_cd(&mut self) -> ::Result<bool>; } /// A trait for serial port devices. /// /// Serial port input and output is implemented through the `std::io::Read` and `std::io::Write` /// traits. A timeout can be set with the `set_timeout()` method and applies to all subsequent I/O /// operations. /// /// The `SerialPort` trait exposes several common control signals. Each control signal is /// represented as a boolean, where `true` indicates that the signal is asserted. /// /// The serial port will be closed when the value is dropped. pub trait SerialPort: io::Read + io::Write { /// Returns the current timeout. fn timeout(&self) -> Duration; /// Sets the timeout for future I/O operations. fn set_timeout(&mut self, timeout: Duration) -> ::Result<()>; /// Configures a serial port device. /// /// ## Errors /// /// This function returns an error if the settings could not be applied to the underlying /// hardware: /// /// * `NoDevice` if the device was disconnected. /// * `InvalidInput` if a setting is not compatible with the underlying hardware. /// * `Io` for any other type of I/O error. fn configure(&mut self, settings: &PortSettings) -> ::Result<()>; /// Alter the serial port's configuration. /// /// This method expects a function, which takes a mutable reference to the serial port's /// configuration settings. The serial port's current settings, read from the device, are /// yielded to the provided function. After the function returns, any changes made to the /// settings object will be written back to the device. /// /// ## Errors /// /// This function returns an error if the `setup` function returns an error or if there was an /// error while reading or writing the device's configuration settings: /// /// * `NoDevice` if the device was disconnected. /// * `InvalidInput` if a setting is not compatible with the underlying hardware. /// * `Io` for any other type of I/O error. /// * Any error returned by the `setup` function. /// /// ## Example /// /// The following is a function that toggles a serial port's settings between one and two stop /// bits: /// /// ```no_run /// use std::io; /// use serial_core::prelude::*; /// /// fn toggle_stop_bits<T: SerialPort>(port: &mut T) -> serial_core::Result<()> { /// port.reconfigure(&|settings| { /// let stop_bits = match settings.stop_bits() { /// Some(serial_core::Stop1) => serial_core::Stop2, /// Some(serial_core::Stop2) | None => serial_core::Stop1, /// }; /// /// settings.set_stop_bits(stop_bits); /// Ok(()) /// }) /// } /// ``` fn reconfigure(&mut self, setup: &Fn(&mut SerialPortSettings) -> ::Result<()>) -> ::Result<()>; /// Sets the state of the RTS (Request To Send) control signal. /// /// Setting a value of `true` asserts the RTS control signal. `false` clears the signal. /// /// ## Errors /// /// This function returns an error if the RTS control signal could not be set to the desired /// state on the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn set_rts(&mut self, level: bool) -> ::Result<()>; /// Sets the state of the DTR (Data Terminal Ready) control signal. /// /// Setting a value of `true` asserts the DTR control signal. `false` clears the signal. /// /// ## Errors /// /// This function returns an error if the DTR control signal could not be set to the desired /// state on the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn set_dtr(&mut self, level: bool) -> ::Result<()>; /// Reads the state of the CTS (Clear To Send) control signal. /// /// This function returns a boolean that indicates whether the CTS control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the CTS control signal could not be read /// from the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_cts(&mut self) -> ::Result<bool>; /// Reads the state of the DSR (Data Set Ready) control signal. /// /// This function returns a boolean that indicates whether the DSR control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the DSR control signal could not be read /// from the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_dsr(&mut self) -> ::Result<bool>; /// Reads the state of the RI (Ring Indicator) control signal. /// /// This function returns a boolean that indicates whether the RI control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the RI control signal could not be read from /// the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_ri(&mut self) -> ::Result<bool>; /// Reads the state of the CD (Carrier Detect) control signal. /// /// This function returns a boolean that indicates whether the CD control signal is asserted. /// /// ## Errors /// /// This function returns an error if the state of the CD control signal could not be read from /// the underlying hardware: /// /// * `NoDevice` if the device was disconnected. /// * `Io` for any other type of I/O error. fn read_cd(&mut self) -> ::Result<bool>; } impl<T> SerialPort for T where T: SerialDevice { fn timeout(&self) -> Duration { T::timeout(self) } fn set_timeout(&mut self, timeout: Duration) -> ::Result<()> { T::set_timeout(self, timeout) } fn configure(&mut self, settings: &PortSettings) -> ::Result<()> { let mut device_settings = try!(T::read_settings(self)); try!(device_settings.set_baud_rate(settings.baud_rate)); device_settings.set_char_size(settings.char_size); device_settings.set_parity(settings.parity); device_settings.set_stop_bits(settings.stop_bits); device_settings.set_flow_control(settings.flow_control); T::write_settings(self, &device_settings) } fn reconfigure(&mut self, setup: &Fn(&mut SerialPortSettings) -> ::Result<()>) -> ::Result<()> { let mut device_settings = try!(T::read_settings(self)); try!(setup(&mut device_settings)); T::write_settings(self, &device_settings) } fn set_rts(&mut self, level: bool) -> ::Result<()> { T::set_rts(self, level) } fn set_dtr(&mut self, level: bool) -> ::Result<()> { T::set_dtr(self, level) } fn read_cts(&mut self) -> ::Result<bool> { T::read_cts(self) } fn read_dsr(&mut self) -> ::Result<bool> { T::read_dsr(self) } fn read_ri(&mut self) -> ::Result<bool> { T::read_ri(self) } fn read_cd(&mut self) -> ::Result<bool> { T::read_cd(self) } } /// A trait for objects that implement serial port configurations. pub trait SerialPortSettings { /// Returns the current baud rate. /// /// This function returns `None` if the baud rate could not be determined. This may occur if /// the hardware is in an uninitialized state. Setting a baud rate with `set_baud_rate()` /// should initialize the baud rate to a supported value. fn baud_rate(&self) -> Option<BaudRate>; /// Returns the character size. /// /// This function returns `None` if the character size could not be determined. This may occur /// if the hardware is in an uninitialized state or is using a non-standard character size. /// Setting a baud rate with `set_char_size()` should initialize the character size to a /// supported value. fn char_size(&self) -> Option<CharSize>; /// Returns the parity-checking mode. /// /// This function returns `None` if the parity mode could not be determined. This may occur if /// the hardware is in an uninitialized state or is using a non-standard parity mode. Setting /// a parity mode with `set_parity()` should initialize the parity mode to a supported value. fn parity(&self) -> Option<Parity>; /// Returns the number of stop bits. /// /// This function returns `None` if the number of stop bits could not be determined. This may /// occur if the hardware is in an uninitialized state or is using an unsupported stop bit /// configuration. Setting the number of stop bits with `set_stop-bits()` should initialize the /// stop bits to a supported value. fn stop_bits(&self) -> Option<StopBits>; /// Returns the flow control mode. /// /// This function returns `None` if the flow control mode could not be determined. This may /// occur if the hardware is in an uninitialized state or is using an unsupported flow control /// mode. Setting a flow control mode with `set_flow_control()` should initialize the flow /// control mode to a supported value. fn flow_control(&self) -> Option<FlowControl>; /// Sets the baud rate. /// /// ## Errors /// /// If the implementation does not support the requested baud rate, this function may return an /// `InvalidInput` error. Even if the baud rate is accepted by `set_baud_rate()`, it may not be /// supported by the underlying hardware. fn set_baud_rate(&mut self, baud_rate: BaudRate) -> ::Result<()>; /// Sets the character size. fn set_char_size(&mut self, char_size: CharSize); /// Sets the parity-checking mode. fn set_parity(&mut self, parity: Parity); /// Sets the number of stop bits. fn set_stop_bits(&mut self, stop_bits: StopBits); /// Sets the flow control mode. fn set_flow_control(&mut self, flow_control: FlowControl); } /// A device-indepenent implementation of serial port settings. #[derive(Debug,Copy,Clone,PartialEq,Eq)] pub struct PortSettings { /// Baud rate. pub baud_rate: BaudRate, /// Character size. pub char_size: CharSize, /// Parity checking mode. pub parity: Parity, /// Number of stop bits. pub stop_bits: StopBits, /// Flow control mode. pub flow_control: FlowControl, } impl SerialPortSettings for PortSettings { fn baud_rate(&self) -> Option<BaudRate> { Some(self.baud_rate) } fn char_size(&self) -> Option<CharSize> { Some(self.char_size) } fn parity(&self) -> Option<Parity> { Some(self.parity) } fn stop_bits(&self) -> Option<StopBits> { Some(self.stop_bits) } fn flow_control(&self) -> Option<FlowControl> { Some(self.flow_control) } fn set_baud_rate(&mut self, baud_rate: BaudRate) -> ::Result<()> { self.baud_rate = baud_rate; Ok(()) } fn set_char_size(&mut self, char_size: CharSize) { self.char_size = char_size; } fn set_parity(&mut self, parity: Parity) { self.parity = parity; } fn set_stop_bits(&mut self, stop_bits: StopBits) { self.stop_bits = stop_bits; } fn set_flow_control(&mut self, flow_control: FlowControl) { self.flow_control = flow_control; } } #[cfg(test)] mod tests { use super::*; fn default_port_settings() -> PortSettings { PortSettings { baud_rate: BaudRate::Baud9600, char_size: CharSize::Bits8, parity: Parity::ParityNone, stop_bits: StopBits::Stop1, flow_control: FlowControl::FlowNone, } } #[test] fn port_settings_manipulates_baud_rate() { let mut settings: PortSettings = default_port_settings(); settings.set_baud_rate(Baud115200).unwrap(); assert_eq!(settings.baud_rate(), Some(Baud115200)); } #[test] fn port_settings_manipulates_char_size() { let mut settings: PortSettings = default_port_settings(); settings.set_char_size(Bits7); assert_eq!(settings.char_size(), Some(Bits7)); } #[test] fn port_settings_manipulates_parity() { let mut settings: PortSettings = default_port_settings(); settings.set_parity(ParityEven); assert_eq!(settings.parity(), Some(ParityEven)); } #[test] fn port_settings_manipulates_stop_bits() { let mut settings: PortSettings = default_port_settings(); settings.set_stop_bits(Stop2); assert_eq!(settings.stop_bits(), Some(Stop2)); } #[test] fn port_settings_manipulates_flow_control() { let mut settings: PortSettings = default_port_settings(); settings.set_flow_control(FlowSoftware); assert_eq!(settings.flow_control(), Some(FlowSoftware)); } }