pub enum RequestError {
ParameterError,
NotSupported,
}Expand description
Enum describing the result of an operation
Variants§
ParameterError
outstation supports this operation, but the parameter(s) are nonsensical.
NotSupported
outstation does not support this operation
Trait Implementations§
Source§impl Clone for RequestError
impl Clone for RequestError
Source§fn clone(&self) -> RequestError
fn clone(&self) -> RequestError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RequestError
impl Debug for RequestError
Source§impl From<RequestError> for Iin2
impl From<RequestError> for Iin2
Source§fn from(from: RequestError) -> Self
fn from(from: RequestError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestError
impl PartialEq for RequestError
impl Copy for RequestError
impl Eq for RequestError
impl StructuralPartialEq for RequestError
Auto Trait Implementations§
impl Freeze for RequestError
impl RefUnwindSafe for RequestError
impl Send for RequestError
impl Sync for RequestError
impl Unpin for RequestError
impl UnwindSafe for RequestError
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