Trait AuthenticationAdapter

Source
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§

Source

fn underlying_auth(&self) -> &dyn Any

Get the underlying exchange-specific authentication implementation

Implementors§