pub trait SyncAuthHeaderStore {
// Required method
fn set_auth_headers(&mut self, headers: BTreeMap<String, String>);
}Required Methods§
fn set_auth_headers(&mut self, headers: BTreeMap<String, String>)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl SyncAuthHeaderStore for HttpSyncTransport
Available on crate feature
native only.