Function termios::cfsetspeed [] [src]

pub fn cfsetspeed(termios: &mut Termios, speed: speed_t) -> Result<()>

Sets input and output baud rates.

This function only sets the necessary values on the given Termios structure. The settings are applied on a successful call to tcsetattr().

Parameters

Examples

cfsetspeed(&mut termios, B9600).unwrap();
assert_eq!(cfgetispeed(&termios), B9600);
assert_eq!(cfgetospeed(&termios), B9600);

Portability

This function is not part of the IEEE Std 1003.1 ("POSIX.1") specification, but it is available on Linux, BSD, and OS X.