Trait MapGetContentSourceContent

Source
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§

Source

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>

Source§

type ValueTrait = dyn MapGetContentSourceContent

Source§

fn get_trait_type_id() -> TraitTypeId

Returns the type id of the trait object.
Source§

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.
Source§

impl Dynamic<Box<dyn MapGetContentSourceContent>> for Box<dyn MapGetContentSourceContent>

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn MapGetContentSourceContent>

Source§

impl Upcast<Box<dyn MapGetContentSourceContent>> for Box<dyn MapGetContentSourceContent>

Source§

impl Upcast<Box<dyn ValueDebug>> for Box<dyn MapGetContentSourceContent>

Implementors§

Source§

impl<T> MapGetContentSourceContent for T
where T: Dynamic<Box<dyn MapGetContentSourceContent>> + Send + Sync + NonLocalValue + ValueDebug,