Trait bones_framework::prelude::ValueExt
source · pub trait ValueExt<'gc> {
// Required method
fn as_static_user_data<T>(&self) -> Result<&'gc T, TypeError>
where T: 'static;
}
Expand description
Extension trait on top of Value
to add helper functions.
Required Methods§
sourcefn as_static_user_data<T>(&self) -> Result<&'gc T, TypeError>where
T: 'static,
fn as_static_user_data<T>(&self) -> Result<&'gc T, TypeError>where
T: 'static,
Convert to a static user data type.
Object Safety§
This trait is not object safe.