Struct basic_dsp_interop::VectorInteropResult [] [src]

pub struct VectorInteropResult<T> {
    pub result_code: i32,
    pub vector: Box<T>,
}

Result of a vector operation. Check the result_code.

Fields

This value is zero in case of error. All other values mean that an error occurred and the data in the vector might be unchanged or invalid. Error codes are described in translate_error.

A pointer to a data vector.