[][src]Enum librist_rust::RistError

pub enum RistError {
    ReceiverCreateError,
    LoggingSetError,
    InvalidCString,
    ParseAddressError,
    PeerCreateError,
    AuthHandlerError,
    OobCallbackError,
    DataReadError,
    StartError,
    TimeoutTooLarge,
}

Variants

ReceiverCreateError
LoggingSetError
InvalidCString

A rust string value was passed that could not be converted into a 'C' string for passing to librist (most likely because the rust string contained a NUL (\0) character

ParseAddressError
PeerCreateError
AuthHandlerError
OobCallbackError
DataReadError
StartError
TimeoutTooLarge

A std::time::Duration value provided to specify a timeout was too large in value to be passed to librist

Trait Implementations

impl Debug for RistError[src]

Auto Trait Implementations

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, 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.