Enum streamdeck_rs::socket::ConnectError
source · pub enum ConnectError {
ConnectionError(Error),
SendError(Error),
}Expand description
Represents an error that occurred while connecting to and registering with the Stream Deck software.
Variants§
ConnectionError(Error)
The web socket connection could not be established.
SendError(Error)
The registration information could not be sent.
Trait Implementations§
source§impl Debug for ConnectError
impl Debug for ConnectError
source§impl Display for ConnectError
impl Display for ConnectError
source§impl Fail for ConnectError
impl Fail for ConnectError
source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read more