Enum opentok::OtcError [−][src]
pub enum OtcError {
Show 13 variants
InvalidParam(&'static str),
Fatal,
ConnectionDropped,
TimedOut,
UnknownPublisherInstance,
UnknownSubscriberInstance,
VideoCaptureFailed,
CameraFailed,
VideoRenderFailed,
UnableToAccessMediaEngine,
NullError,
AlreadyInitialized(&'static str),
Initialization(&'static str, &'static str),
// some variants omitted
}
Expand description
OpenTok error status codes.
Variants
InvalidParam(&'static str)
Tuple Fields
0: &'static str
An argument used in a function call is not valid
Fatal
Generic error
ConnectionDropped
The connection to the OpenTok messaging server was dropped. Check the network connection“
TimedOut
Timeout while performing a connect action
UnknownPublisherInstance
An unknown Publisher instance was used as a function argument
UnknownSubscriberInstance
An unknown Subscriber instance was used as a function argument
VideoCaptureFailed
There was an error with video capturer
CameraFailed
There was an error while acquiring video from the camera
VideoRenderFailed
There was an error while rendering video
UnableToAccessMediaEngine
There was an error when trying to get the list of supported video codecs
NullError
Unexpected null pointer
AlreadyInitialized(&'static str)
Tuple Fields
0: &'static str
Double initilization error.
Initialization(&'static str, &'static str)
Initialization error.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for OtcError
impl UnwindSafe for OtcError
Blanket Implementations
Mutably borrows from an owned value. Read more