Enum gattii::SerialCommand [] [src]

pub enum SerialCommand {
    CancelSendFile,
    ChangeBaud(u32),
    ChangeDataBits(DataBits),
    ChangeFlowControl(FlowControl),
    ChangeStopBits(StopBits),
    ChangeParity(Parity),
    ChangePort(String),
    ConnectToPort {
        name: String,
        baud: u32,
    },
    Disconnect,
    SendData(Vec<u8>),
    SendFile(PathBuf),
    LogToFile(PathBuf),
    CancelLogToFile,
}

Variants

Fields of ConnectToPort

Trait Implementations

impl Debug for SerialCommand
[src]

Formats the value using the given formatter.