Skip to main content

ICustomEnvSetManagerMethods

Trait ICustomEnvSetManagerMethods 

Source
pub trait ICustomEnvSetManagerMethods: ICustomEnvSetManager {
    // Provided methods
    fn register(self, set: impl Into<CustomEnvSet>) { ... }
    fn unregister(self, set: impl Into<CustomEnvSet>) { ... }
    fn try_get_reflection_probe(
        self,
        index: impl Into<i32>,
    ) -> (bool, ReflectionProbe) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn register(self, set: impl Into<CustomEnvSet>)

Register(crate::unity_engine::rendering::universal::custom::customenvset::CustomEnvSet) overload

Source

fn unregister(self, set: impl Into<CustomEnvSet>)

Unregister(crate::unity_engine::rendering::universal::custom::customenvset::CustomEnvSet) overload

Source

fn try_get_reflection_probe( self, index: impl Into<i32>, ) -> (bool, ReflectionProbe)

TryGetReflectionProbe(i32, *mutcrate::unity_engine::reflectionprobe::ReflectionProbe) overload

Source

fn ctor(self)

.ctor() overload

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§

Source§

impl<__T: ICustomEnvSetManager> ICustomEnvSetManagerMethods for __T

Available on crate feature unity_engine-rendering-universal-custom-customenvsetmanager only.