pub trait Object:
'static
+ Sized
+ Send
+ Sync
+ ToOutput
+ Topological
+ Tagged
+ for<'a> Parse<Input<'a>> {
// Provided methods
fn parse_slice(data: &[u8], resolve: &Arc<dyn Resolve>) -> Result<Self> { ... }
fn full_hash(&self) -> Hash { ... }
}Provided Methods§
fn parse_slice(data: &[u8], resolve: &Arc<dyn Resolve>) -> Result<Self>
fn full_hash(&self) -> Hash
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.