pub enum GetMultiResponse {
OK(String),
BadRequest(String),
NotFound(String),
}
Variants§
OK(String)
OK
BadRequest(String)
Bad request
NotFound(String)
Not found (or M-Bus HTTPD is unauthorized to access it, or to change baud rate to that specified, etc)
Trait Implementations§
Source§impl Debug for GetMultiResponse
impl Debug for GetMultiResponse
Source§impl PartialEq for GetMultiResponse
impl PartialEq for GetMultiResponse
impl StructuralPartialEq for GetMultiResponse
Auto Trait Implementations§
impl Freeze for GetMultiResponse
impl RefUnwindSafe for GetMultiResponse
impl Send for GetMultiResponse
impl Sync for GetMultiResponse
impl Unpin for GetMultiResponse
impl UnwindSafe for GetMultiResponse
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