Type Alias CopyBufferResult

Source
pub type CopyBufferResult = Result<(), CopyError<usize, usize>>;
Expand description

Result type returned when copying a buffer into another buffer.

Aliased Type§

pub enum CopyBufferResult {
    Ok(()),
    Err(CopyError<usize, usize>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(CopyError<usize, usize>)

Contains the error value