pub trait MapGetContentSourceContent:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn map_get_content(
self: Vc<Self>,
get_content: Vc<Box<dyn GetContentSourceContent>>,
) -> Vc<Box<dyn GetContentSourceContent>>
where Self: Sized;
}Expand description
Transformation functor
Required Methods§
fn map_get_content(
self: Vc<Self>,
get_content: Vc<Box<dyn GetContentSourceContent>>,
) -> Vc<Box<dyn GetContentSourceContent>>where
Self: Sized,
Trait Implementations§
impl Dynamic<Box<dyn MapGetContentSourceContent>> for Box<dyn MapGetContentSourceContent>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn MapGetContentSourceContent>
Available on debug-assertions enabled only.
Source§impl TraitVtablePrototype for Box<dyn MapGetContentSourceContent>
impl TraitVtablePrototype for Box<dyn MapGetContentSourceContent>
impl Upcast<Box<dyn MapGetContentSourceContent>> for Box<dyn MapGetContentSourceContent>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn MapGetContentSourceContent>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn MapGetContentSourceContent>
Available on debug-assertions enabled only.
Source§impl VcValueTrait for Box<dyn MapGetContentSourceContent>
impl VcValueTrait for Box<dyn MapGetContentSourceContent>
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 MapGetContentSourceContent
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".