pub trait EmittedModuleReference:
ModuleReference
+ ValueToString
+ Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn data(self: Vc<Self>) -> Vc<CompileTimeDefineValue>
where Self: Sized;
}Required Methods§
Trait Implementations§
impl Dynamic<Box<dyn EmittedModuleReference>> for Box<dyn EmittedModuleReference>
impl Dynamic<Box<dyn ModuleReference>> for Box<dyn EmittedModuleReference>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn EmittedModuleReference>
Available on debug-assertions enabled only.
impl Dynamic<Box<dyn ValueToString>> for Box<dyn EmittedModuleReference>
Source§impl TraitVtablePrototype for Box<dyn EmittedModuleReference>
impl TraitVtablePrototype for Box<dyn EmittedModuleReference>
impl Upcast<Box<dyn EmittedModuleReference>> for Box<dyn EmittedModuleReference>
impl Upcast<Box<dyn ModuleReference>> for Box<dyn EmittedModuleReference>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn EmittedModuleReference>
Available on debug-assertions enabled only.
impl Upcast<Box<dyn ValueToString>> for Box<dyn EmittedModuleReference>
impl UpcastStrict<Box<dyn ModuleReference>> for Box<dyn EmittedModuleReference>
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn EmittedModuleReference>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ValueToString>> for Box<dyn EmittedModuleReference>
Source§impl VcValueTrait for Box<dyn EmittedModuleReference>
impl VcValueTrait for Box<dyn EmittedModuleReference>
Source§const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
The per-trait vtable registry, populated by [crate::value_type::register_all_trait_methods] Read more
type ValueTrait = dyn EmittedModuleReference
Source§fn get_trait_type_id() -> TraitTypeId
fn get_trait_type_id() -> TraitTypeId
Returns the type id of the trait object.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".