pub enum Mt5Error {
IoError(Error),
ConnectionFailed(String),
ProtocolError(String),
InvalidResponse(String),
NotInitialized,
CommandFailed {
cmd: u32,
error: String,
},
NotSupported(String),
}Variants§
IoError(Error)
ConnectionFailed(String)
ProtocolError(String)
InvalidResponse(String)
NotInitialized
CommandFailed
NotSupported(String)
Trait Implementations§
Source§impl Error for Mt5Error
impl Error for Mt5Error
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()
Auto Trait Implementations§
impl Freeze for Mt5Error
impl !RefUnwindSafe for Mt5Error
impl Send for Mt5Error
impl Sync for Mt5Error
impl Unpin for Mt5Error
impl UnsafeUnpin for Mt5Error
impl !UnwindSafe for Mt5Error
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