pub trait MavenRemote: Send + Sync {
// Required method
fn get(
&self,
url: &str,
actor: &str,
token: &Secret,
) -> Result<Option<Vec<u8>>>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".