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§
Source§impl VcValueTrait for Box<dyn MapGetContentSourceContent>
impl VcValueTrait for Box<dyn MapGetContentSourceContent>
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.
Source§fn get_impl_vtables() -> &'static VTableRegistry<Self::ValueTrait>
fn get_impl_vtables() -> &'static VTableRegistry<Self::ValueTrait>
Returns the vtable for an implementation of this trait.
Panics if ValueTypeId does not implement the trait.