Struct basic_dsp_interop::BinaryVectorInteropResult [] [src]

#[repr(C)]
pub struct BinaryVectorInteropResult<T> { pub result_code: i32, pub vector1: Box<T>, pub vector2: 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.

A pointer to a data vector.