pub trait AuthenticationAdapter: AuthenticationManager {
// Required method
fn underlying_auth(&self) -> &dyn Any;
}Expand description
Trait for authentication adapters that wrap exchange-specific auth implementations
Required Methods§
Sourcefn underlying_auth(&self) -> &dyn Any
fn underlying_auth(&self) -> &dyn Any
Get the underlying exchange-specific authentication implementation