pub trait ArchiveURITrait: URIOrRefTrait {
// Required method
fn archive_uri(&self) -> ArchiveURIRef<'_>;
// Provided method
fn archive_id(&self) -> &ArchiveId { ... }
}
Required Methodsยง
fn archive_uri(&self) -> ArchiveURIRef<'_>
Provided Methodsยง
fn archive_id(&self) -> &ArchiveId
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.