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§

source

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.

Implementors§

source§

impl<'gc> ValueExt<'gc> for Value<'gc>