pub trait Transfer<W> {
type Error;
fn transfer<'w>(
&mut self,
words: &'w mut [W]
) -> Result<&'w [W], Self::Error>;
}
Expand description
Blocking transfer
pub trait Transfer<W> {
type Error;
fn transfer<'w>(
&mut self,
words: &'w mut [W]
) -> Result<&'w [W], Self::Error>;
}
Blocking transfer