Struct rotary::io::Read[][src]

pub struct Read<B> { /* fields omitted */ }

Make a buffer into a read adapter that implements ReadBuf.

Examples

use rotary::Buf as _;
use rotary::io;

let from = rotary::interleaved![[1, 2, 3, 4]; 2];
let mut to = rotary::interleaved![[0; 4]; 2];

let mut to = io::ReadWrite::new(to);

io::copy_remaining(io::Read::new((&from).skip(2).limit(1)), &mut to);
io::copy_remaining(io::Read::new((&from).limit(1)), &mut to);

assert_eq!(to.as_ref().as_slice(), &[3, 3, 1, 1, 0, 0, 0, 0]);

Implementations

impl<B> Read<B> where
    B: ExactSizeBuf
[src]

pub fn new(buf: B) -> Self[src]

Construct a new read adapter.

pub fn as_ref(&self) -> &B[src]

Access the underlying buffer.

Examples

use rotary::Buf as _;
use rotary::{io, wrap};

let from: rotary::Interleaved<i16> = rotary::interleaved![[1, 2, 3, 4]; 4];
let mut from = io::Read::new(from);

io::copy_remaining(&mut from, wrap::interleaved(&mut [0i16; 16][..], 4));

assert_eq!(from.as_ref().channels(), 4);

pub fn as_mut(&mut self) -> &mut B[src]

Access the underlying buffer mutably.

Examples

use rotary::Buf as _;
use rotary::{io, wrap};

let from: rotary::Interleaved<i16> = rotary::interleaved![[1, 2, 3, 4]; 4];
let mut from = io::Read::new(from);

io::copy_remaining(&mut from, wrap::interleaved(&mut [0i16; 16][..], 4));

from.as_mut().resize_channels(2);

assert_eq!(from.channels(), 2);

pub fn into_inner(self) -> B[src]

Convert into the underlying buffer.

Examples

use rotary::Buf as _;
use rotary::{io, wrap};

let from: rotary::Interleaved<i16> = rotary::interleaved![[1, 2, 3, 4]; 4];
let mut from = io::Read::new(from);

io::copy_remaining(&mut from, wrap::interleaved(&mut [0i16; 16][..], 4));

let from = from.into_inner();

assert_eq!(from.channels(), 4);

pub fn set_read(&mut self, read: usize)[src]

Set the number of frames read.

Trait Implementations

impl<B> Buf for Read<B> where
    B: Buf
[src]

impl<B, T> Channels<T> for Read<B> where
    B: Channels<T>, 
[src]

impl<B> ExactSizeBuf for Read<B> where
    B: ExactSizeBuf
[src]

impl<B> ReadBuf for Read<B>[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for Read<B> where
    B: RefUnwindSafe

impl<B> Send for Read<B> where
    B: Send

impl<B> Sync for Read<B> where
    B: Sync

impl<B> Unpin for Read<B> where
    B: Unpin

impl<B> UnwindSafe for Read<B> where
    B: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.