pub trait LineBreaker {
// Required method
fn break_line<F: FontRepo>(
self,
font_repo: &F,
v_list: &mut Vec<Vertical>,
h_list: &mut Vec<Horizontal>,
);
}Required Methods§
fn break_line<F: FontRepo>( self, font_repo: &F, v_list: &mut Vec<Vertical>, h_list: &mut Vec<Horizontal>, )
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.