Trait IParallelActivityHostConcept

pub trait IParallelActivityHostConcept: Inherits<Object> + Inherits<ParallelActivityHostConcept> {
    // Provided methods
    fn get_bring_activated_to_front(&self) -> Result<bool, Error> { ... }
    fn set_bring_activated_to_front(&self, value: bool) -> Result<(), Error> { ... }
    fn get_activation_stack(&self) -> Result<bool, Error> { ... }
    fn set_activation_stack(&self, value: bool) -> Result<(), Error> { ... }
    fn get_parallel_activity_host_content(&self) -> Result<KanziString, Error> { ... }
    fn set_parallel_activity_host_content(
        &self,
        value: impl AsRef<KanziStr>,
    ) -> Result<(), Error> { ... }
    fn get_focus_on_activation(
        &self,
    ) -> Result<ParallelActivityHostFocusingPolicy, Error> { ... }
    fn set_focus_on_activation(
        &self,
        value: ParallelActivityHostFocusingPolicy,
    ) -> Result<(), Error> { ... }
}
Expand description

This is the base class for Parallel Activity Host nodes. See: ParallelActivityHost2D, ParallelActivityHost3D.

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§