pub trait Original<Actual> {
// Required methods
fn point_pos(&self, point: impl Into<CodePoint>) -> usize;
fn actual(&self, point: impl Into<CodePoint>) -> Actual;
}
Required Methods§
fn point_pos(&self, point: impl Into<CodePoint>) -> usize
fn actual(&self, point: impl Into<CodePoint>) -> Actual
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.