#[repr(u32)]pub enum gvr_controller_api_status {
GVR_CONTROLLER_API_OK = 0,
GVR_CONTROLLER_API_UNSUPPORTED = 1,
GVR_CONTROLLER_API_NOT_AUTHORIZED = 2,
GVR_CONTROLLER_API_UNAVAILABLE = 3,
GVR_CONTROLLER_API_SERVICE_OBSOLETE = 4,
GVR_CONTROLLER_API_CLIENT_OBSOLETE = 5,
GVR_CONTROLLER_API_MALFUNCTION = 6,
}Expand description
Constants that represent the status of the controller API.
Variants§
GVR_CONTROLLER_API_OK = 0
GVR_CONTROLLER_API_UNSUPPORTED = 1
GVR_CONTROLLER_API_NOT_AUTHORIZED = 2
GVR_CONTROLLER_API_UNAVAILABLE = 3
GVR_CONTROLLER_API_SERVICE_OBSOLETE = 4
GVR_CONTROLLER_API_CLIENT_OBSOLETE = 5
GVR_CONTROLLER_API_MALFUNCTION = 6
Trait Implementations§
Source§impl Clone for gvr_controller_api_status
impl Clone for gvr_controller_api_status
Source§fn clone(&self) -> gvr_controller_api_status
fn clone(&self) -> gvr_controller_api_status
Returns a duplicate 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 gvr_controller_api_status
impl Debug for gvr_controller_api_status
Source§impl Hash for gvr_controller_api_status
impl Hash for gvr_controller_api_status
impl Copy for gvr_controller_api_status
impl Eq for gvr_controller_api_status
impl StructuralPartialEq for gvr_controller_api_status
Auto Trait Implementations§
impl Freeze for gvr_controller_api_status
impl RefUnwindSafe for gvr_controller_api_status
impl Send for gvr_controller_api_status
impl Sync for gvr_controller_api_status
impl Unpin for gvr_controller_api_status
impl UnwindSafe for gvr_controller_api_status
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