pub struct Details {
pub account_type: Option<String>,
pub login: Option<String>,
pub server: Option<String>,
pub server_info: Option<ServerInfo>,
}
Expand description
Extra information about the error.
Fields§
§account_type: Option<String>
MT5 account type.\n
login: Option<String>
MT5 account login ID.\n
server: Option<String>
Trade server name of the MT5 account.\n
server_info: Option<ServerInfo>
Trade server information.\n
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Details
impl<'de> Deserialize<'de> for Details
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Details
impl RefUnwindSafe for Details
impl Send for Details
impl Sync for Details
impl Unpin for Details
impl UnwindSafe for Details
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