pub trait BybitResponseCheck {
// Required methods
fn ret_code(&self) -> i64;
fn ret_msg(&self) -> &str;
}Expand description
Trait for Bybit response types that contain ret_code and ret_msg fields.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".