XrMetaVirtualKeyboard

Struct XrMetaVirtualKeyboard 

Source
pub struct XrMetaVirtualKeyboard { /* private fields */ }
Expand description

Main extension handler for Meta virtual keyboard functionality

This struct manages the XR_META_virtual_keyboard extension, providing access to:

  • Virtual keyboard creation and destruction
  • Spatial positioning and location suggestions
  • Input event handling and text input
  • Model visibility and animation control
  • Texture management and dirty texture tracking

Implementations§

Source§

impl XrMetaVirtualKeyboard

Source

pub fn new() -> Option<Self>

Creates a new XrMetaVirtualKeyboardExtension instance if the extension is supported

§Returns
  • Some(Self) if extension is available and initialization succeeds
  • None if extension is not available or initialization fails
§Examples
use stereokit_rust::tools::xr_meta_virtual_keyboard::*;

number_of_steps = 50;
test_steps!( // !!!! Get a proper main loop !!!!
    if iter == 20 {
        // Test extension creation and functionality
        Log::info("🔧 Testing XR_META_virtual_keyboard extension creation...");
         
        match XrMetaVirtualKeyboard::new() {
            Some(extension) => {
                Log::info("✅ Extension created successfully");
                 
                // Test system support check
                match extension.check_system_support(false) {
                    Ok(_sys_prop) => {
                        Log::info("✅ System supports virtual keyboards");
                         
                        // Test keyboard creation
                        match extension.create_virtual_keyboard() {
                            Ok(keyboard) => {
                                Log::info("✅ Virtual keyboard created!");
                                 
                                // Test visibility control
                                if extension.set_model_visibility(keyboard, true).is_ok() {
                                    Log::info("✅ Keyboard shown");
                                }
                                if extension.set_model_visibility(keyboard, false).is_ok() {
                                    Log::info("✅ Keyboard hidden");
                                }
                                 
                                // Cleanup
                                if extension.destroy_virtual_keyboard(keyboard).is_ok() {
                                    Log::info("✅ Keyboard destroyed");
                                }
                            }
                            Err(e) => Log::err(format!("❌ Keyboard creation failed: {:?}", e)),
                        }
                    }
                    Err(e) => Log::err(format!("❌ System support check failed: {:?}", e)),
                }
            }
            None => Log::warn("⚠️ Extension not available on this system"),
        }
    }
);
Source

pub fn check_system_support( &self, with_log: bool, ) -> Result<SystemProperties, XrResult>

Check if the system supports virtual keyboards

§Parameters
  • with_log: If true, outputs system properties to diagnostic log
§Returns

Ok(true) if virtual keyboards are supported, Ok(false) if not, or error on failure

Source

pub fn create_virtual_keyboard(&self) -> Result<VirtualKeyboardMETA, XrResult>

Create a virtual keyboard

§Returns

Handle to the created virtual keyboard or error on failure

Source

pub fn destroy_virtual_keyboard( &self, keyboard: VirtualKeyboardMETA, ) -> Result<(), XrResult>

Destroy a virtual keyboard

§Arguments
  • keyboard - The virtual keyboard to destroy
§Returns

Ok(()) on success or error on failure

Source

pub fn create_virtual_keyboard_space( &self, keyboard: VirtualKeyboardMETA, location_type: VirtualKeyboardLocationTypeMETA, space: Space, pose_in_space: Posef, ) -> Result<Space, XrResult>

Create a space for the virtual keyboard

§Arguments
  • keyboard - The virtual keyboard handle
  • location_type - Type of location (CUSTOM, etc.)
  • space - Reference space
  • pose_in_space - Pose relative to the reference space
§Returns

Handle to the created keyboard space or error on failure

Source

pub fn set_model_visibility( &self, keyboard: VirtualKeyboardMETA, visible: bool, ) -> Result<(), XrResult>

Set the visibility of the virtual keyboard model

§Arguments
  • keyboard - The virtual keyboard handle
  • visible - Whether the keyboard should be visible
§Returns

Ok(()) on success or error on failure

Source

pub fn suggest_location( &self, keyboard: VirtualKeyboardMETA, location_info: &VirtualKeyboardSpaceCreateInfoMETA, ) -> Result<(), XrResult>

Suggest a location for the virtual keyboard

§Arguments
  • keyboard - The virtual keyboard handle
  • location_info - Information about the suggested location
§Returns

Ok(()) on success or error on failure

Trait Implementations§

Source§

impl Debug for XrMetaVirtualKeyboard

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more