Enum it_lilo::lifter::LiError[][src]

pub enum LiError {
    InvalidAccess {
        offset: usize,
        size: usize,
        memory_size: usize,
    },
    RecordResolvableError(RecordResolvableError),
    InvalidUTF8String(FromUtf8Error),
    EmptyRecord(String),
}

Variants

InvalidAccess
Show fields

Fields of InvalidAccess

offset: usizesize: usizememory_size: usize
RecordResolvableError(RecordResolvableError)
InvalidUTF8String(FromUtf8Error)
EmptyRecord(String)

This error occurred when a record is created from empty values array.

Trait Implementations

impl Debug for LiError[src]

impl Display for LiError[src]

impl Error for LiError[src]

impl From<FromUtf8Error> for LiError[src]

impl From<RecordResolvableError> for LiError[src]

Auto Trait Implementations

impl RefUnwindSafe for LiError

impl Send for LiError

impl Sync for LiError

impl Unpin for LiError

impl UnwindSafe for LiError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.