pub enum PollingError {
Network(String),
StateParsing(String),
UnsupportedService {
service: Service,
},
DeviceUnreachable {
device_ip: IpAddr,
},
TaskSpawn(String),
TooManyErrors {
error_count: u32,
},
SoapClient(String),
}Expand description
Errors related to polling operations
Variants§
Network(String)
StateParsing(String)
UnsupportedService
DeviceUnreachable
TaskSpawn(String)
TooManyErrors
SoapClient(String)
Trait Implementations§
Source§impl Debug for PollingError
impl Debug for PollingError
Source§impl Display for PollingError
impl Display for PollingError
Source§impl Error for PollingError
impl Error for PollingError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<PollingError> for BrokerError
impl From<PollingError> for BrokerError
Source§fn from(source: PollingError) -> Self
fn from(source: PollingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PollingError
impl RefUnwindSafe for PollingError
impl Send for PollingError
impl Sync for PollingError
impl Unpin for PollingError
impl UnsafeUnpin for PollingError
impl UnwindSafe for PollingError
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