pub trait SyncAuthSignerStore {
// Required method
fn set_auth_signer(
&mut self,
signer: Option<Arc<dyn Fn(SyncRequestToSign) -> Result<BTreeMap<String, String>, String> + Send + Sync>>,
);
}Required Methods§
fn set_auth_signer( &mut self, signer: Option<Arc<dyn Fn(SyncRequestToSign) -> Result<BTreeMap<String, String>, String> + Send + Sync>>, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl SyncAuthSignerStore for HttpSyncTransport
Available on crate feature
native only.