Enum arrayfire::AfError
[−]
[src]
#[repr(C)]pub enum AfError { SUCCESS, ERR_NO_MEM, ERR_DRIVER, ERR_RUNTIME, ERR_INVALID_ARRAY, ERR_ARG, ERR_SIZE, ERR_TYPE, ERR_DIFF_TYPE, ERR_BATCH, ERR_DEVICE, ERR_NOT_SUPPORTED, ERR_NOT_CONFIGURED, ERR_NO_DBL, ERR_NO_GFX, ERR_INTERNAL, ERR_UNKNOWN, }
Error codes
Variants
SUCCESSThe function returned successfully
ERR_NO_MEMThe system or device ran out of memory
ERR_DRIVERThere was an error in the device driver
ERR_RUNTIMEThere was an error with the runtime environment
ERR_INVALID_ARRAYThe input array is not a valid Array object
ERR_ARGOne of the function arguments is incorrect
ERR_SIZEThe size is incorrect
ERR_TYPEThe type is not suppported by this function
ERR_DIFF_TYPEThe type of the input arrays are not compatible
ERR_BATCHFunction does not support GFOR / batch mode
ERR_DEVICEInput does not belong to the current device
ERR_NOT_SUPPORTEDThe option is not supported
ERR_NOT_CONFIGUREDThis build of ArrayFire does not support this feature
ERR_NO_DBLThis device does not support double
ERR_NO_GFXThis build of ArrayFire was not built with graphics or this device does not support graphics
ERR_INTERNALThere was an internal error either in ArrayFire or in a project upstream
ERR_UNKNOWNUnknown Error
Trait Implementations
impl Clone for AfError[src]
fn clone(&self) -> AfError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for AfError[src]
impl Debug for AfError[src]
impl PartialEq for AfError[src]
fn eq(&self, __arg_0: &AfError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Display for AfError[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError>
Formats the value using the given formatter. Read more
impl Error for AfError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any. Read more