pub enum Error {
NoMatchingDevice,
CommunicationError,
ThreadCreationError,
InlineSession,
UnsupportedFeature(String),
BackendSpecific(String),
}
Expand description
Errors that can be produced by XR.
Variants§
NoMatchingDevice
CommunicationError
ThreadCreationError
InlineSession
UnsupportedFeature(String)
BackendSpecific(String)
Trait Implementations§
source§impl<'de> Deserialize<'de> for Error
impl<'de> Deserialize<'de> for Error
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more