#[repr(u32)]pub enum EVRInputError {
Show 21 variants
VRInputError_None = 0,
VRInputError_NameNotFound = 1,
VRInputError_WrongType = 2,
VRInputError_InvalidHandle = 3,
VRInputError_InvalidParam = 4,
VRInputError_NoSteam = 5,
VRInputError_MaxCapacityReached = 6,
VRInputError_IPCError = 7,
VRInputError_NoActiveActionSet = 8,
VRInputError_InvalidDevice = 9,
VRInputError_InvalidSkeleton = 10,
VRInputError_InvalidBoneCount = 11,
VRInputError_InvalidCompressedData = 12,
VRInputError_NoData = 13,
VRInputError_BufferTooSmall = 14,
VRInputError_MismatchedActionManifest = 15,
VRInputError_MissingSkeletonData = 16,
VRInputError_InvalidBoneIndex = 17,
VRInputError_InvalidPriority = 18,
VRInputError_PermissionDenied = 19,
VRInputError_InvalidRenderModel = 20,
}
Variants§
VRInputError_None = 0
VRInputError_NameNotFound = 1
VRInputError_WrongType = 2
VRInputError_InvalidHandle = 3
VRInputError_InvalidParam = 4
VRInputError_NoSteam = 5
VRInputError_MaxCapacityReached = 6
VRInputError_IPCError = 7
VRInputError_NoActiveActionSet = 8
VRInputError_InvalidDevice = 9
VRInputError_InvalidSkeleton = 10
VRInputError_InvalidBoneCount = 11
VRInputError_InvalidCompressedData = 12
VRInputError_NoData = 13
VRInputError_BufferTooSmall = 14
VRInputError_MismatchedActionManifest = 15
VRInputError_MissingSkeletonData = 16
VRInputError_InvalidBoneIndex = 17
VRInputError_InvalidPriority = 18
VRInputError_PermissionDenied = 19
VRInputError_InvalidRenderModel = 20
Implementations§
Source§impl EVRInputError
impl EVRInputError
pub fn into_result(self) -> Result<(), Self>
Trait Implementations§
Source§impl Clone for EVRInputError
impl Clone for EVRInputError
Source§fn clone(&self) -> EVRInputError
fn clone(&self) -> EVRInputError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EVRInputError
impl Debug for EVRInputError
Source§impl Display for EVRInputError
impl Display for EVRInputError
Source§impl Error for EVRInputError
impl Error for EVRInputError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl ExternType for EVRInputError
impl ExternType for EVRInputError
Source§impl Hash for EVRInputError
impl Hash for EVRInputError
Source§impl PartialEq for EVRInputError
impl PartialEq for EVRInputError
impl Eq for EVRInputError
impl StructuralPartialEq for EVRInputError
impl UniquePtrTarget for EVRInputError
impl VectorElement for EVRInputError
impl WeakPtrTarget for EVRInputError
Auto Trait Implementations§
impl Freeze for EVRInputError
impl RefUnwindSafe for EVRInputError
impl Send for EVRInputError
impl Sync for EVRInputError
impl Unpin for EVRInputError
impl UnwindSafe for EVRInputError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.