pub trait CmdArgument {
// Required method
fn take_cell_paths(&mut self) -> Option<Vec<CellPath>>;
}Required Methods§
fn take_cell_paths(&mut self) -> Option<Vec<CellPath>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".