Enum ocl::Error
[−]
[src]
pub enum Error {
Conversion(String),
Status {
status: Status,
status_string: String,
fn_name: &'static str,
fn_info: String,
desc: String,
},
String(String),
Nul(NulError),
Io(Error),
FromUtf8Error(FromUtf8Error),
UnspecifiedDimensions,
IntoStringError(IntoStringError),
}An enum containing either a String or one of several other error types.
Implements the usual error traits.
Stability
The String variant may eventually be removed. Many more variants and
sub-types will be added as time goes on and things stabilize.
Status will eventually be changed internally to contain a sub-error type
unique to each function which generates it (yeah that'll be fun to
implement).
UnspecifiedDimensions may be moved into a sub-type.
For now, don't assume the existence of or check for any of the above.
Variants
Conversion(String)StatusFields
status: Status | |
status_string: String | |
fn_name: &'static str | |
fn_info: String | |
desc: String |
String(String)Nul(NulError)Io(Error)FromUtf8Error(FromUtf8Error)UnspecifiedDimensionsIntoStringError(IntoStringError)Methods
impl Error
fn new<S>(desc: S) -> Error where S: Into<String>
Returns a new Error with the description string: desc.
fn err<T, S>(desc: S) -> Result<T, Error> where S: Into<String>
Returns a new ocl::Result::Err containing an ocl::Error::String
variant with the given description.
fn err_status<T, S>(errcode: i32,
fn_name: &'static str,
fn_info: S)
-> Result<T, Error> where S: Into<String>, T: Default
fn_name: &'static str,
fn_info: S)
-> Result<T, Error> where S: Into<String>, T: Default
Returns a new ocl::Result::Err containing an ocl::Error with the
given error code and description.
fn err_conversion<T, S>(desc: S) -> Result<T, Error> where S: Into<String>
Returns a new ocl::Result::Err containing an
ocl::Error::Conversion variant with the given description.
fn prepend<'s, S>(&'s mut self, txt: S) where S: AsRef<&'s str>
If this is a String variant, concatenate txt to the front of the
contained string. Otherwise, do nothing at all.
fn status(&self) -> Option<Status>
Returns the error status code for Status variants.
Trait Implementations
impl From<String> for Error
impl<'a> From<&'a str> for Error
impl From<NulError> for Error
impl From<Error> for Error
impl From<FromUtf8Error> for Error
fn from(err: FromUtf8Error) -> Error
Performs the conversion.
impl From<IntoStringError> for Error
fn from(err: IntoStringError) -> Error
Performs the conversion.