Skip to main content

FillContent

Trait FillContent 

Source
pub trait FillContent {
    // Required method
    fn fill_content(&mut self, number: usize);
}

Required Methods§

Source

fn fill_content(&mut self, number: usize)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> FillContent for Vec<T>
where T: FillContent,

Source§

fn fill_content(&mut self, number: usize)

Implementors§