Skip to main content

Extendable

Trait Extendable 

Source
pub trait Extendable<T> {
    // Required method
    fn do_extend(&mut self, other: &T) -> Result<()>;
}

Required Methods§

Source

fn do_extend(&mut self, other: &T) -> Result<()>

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: AnyBlob> Extendable<T> for Vec<u8>

Source§

fn do_extend(&mut self, other: &T) -> Result<()>

Implementors§