pub enum IndirectLighting {
Ibl,
Ssgi,
}Expand description
Indirect-diffuse lighting source for PostProcessConfig.indirect_lighting.
Ibl is the image-based-lighting-only ambient term the renderer has always
used; Ssgi layers a screen-space global-illumination bounce on top.
Variants§
Trait Implementations§
Source§impl Clone for IndirectLighting
impl Clone for IndirectLighting
Source§fn clone(&self) -> IndirectLighting
fn clone(&self) -> IndirectLighting
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IndirectLighting
Source§impl Debug for IndirectLighting
impl Debug for IndirectLighting
Source§impl Default for IndirectLighting
impl Default for IndirectLighting
Source§fn default() -> IndirectLighting
fn default() -> IndirectLighting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndirectLighting
impl<'de> Deserialize<'de> for IndirectLighting
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IndirectLighting, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IndirectLighting, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for IndirectLighting
Source§impl PartialEq for IndirectLighting
impl PartialEq for IndirectLighting
Source§impl Serialize for IndirectLighting
impl Serialize for IndirectLighting
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for IndirectLighting
Auto Trait Implementations§
impl Freeze for IndirectLighting
impl RefUnwindSafe for IndirectLighting
impl Send for IndirectLighting
impl Sync for IndirectLighting
impl Unpin for IndirectLighting
impl UnsafeUnpin for IndirectLighting
impl UnwindSafe for IndirectLighting
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.