Trait IntoCowBuffer

Source
pub trait IntoCowBuffer<'a> {
    // Required method
    fn into_cow(self) -> Cow<'a, Buffer>;
}

Required Methods§

Source

fn into_cow(self) -> Cow<'a, Buffer>

Implementations on Foreign Types§

Source§

impl<'a> IntoCowBuffer<'a> for &'a Buffer

Source§

fn into_cow(self) -> Cow<'a, Buffer>

Source§

impl<'a> IntoCowBuffer<'a> for Buffer

Source§

fn into_cow(self) -> Cow<'a, Buffer>

Implementors§