Vector

Trait Vector 

Source
pub trait Vector {
    // Required methods
    fn as_any(&self) -> &dyn Any;
    fn as_mut_any(&mut self) -> &mut dyn Any;
}
Expand description

Vector trait.

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Returns a reference to the underlying Any type that this trait object

Source

fn as_mut_any(&mut self) -> &mut dyn Any

Returns a mutable reference to the underlying Any type that this trait object

Implementors§