pub trait LinksIoBackend {
    type Link: IoBackend + ?Sized;

    // Required method
    fn get_mut(&self) -> &Self::Link;
}
Expand description

Represents types that contain an IoBackend.

Required Associated Types§

Required Methods§

source

fn get_mut(&self) -> &Self::Link

Implementors§

source§

impl<'a, T: IoBackend + ?Sized> LinksIoBackend for RefLink<'a, T>

source§

impl<T: IoBackend> LinksIoBackend for T