pub enum AccelerationStructureTag {
VertexReturn,
}Available on crate feature
naga-ext only.Expand description
Acceleration structure flags (naga extension)
Variants§
VertexReturn
Trait Implementations§
Source§impl Clone for AccelerationStructureTag
impl Clone for AccelerationStructureTag
Source§fn clone(&self) -> AccelerationStructureTag
fn clone(&self) -> AccelerationStructureTag
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 AccelerationStructureTag
Source§impl Debug for AccelerationStructureTag
impl Debug for AccelerationStructureTag
Source§impl<'de> Deserialize<'de> for AccelerationStructureTag
impl<'de> Deserialize<'de> for AccelerationStructureTag
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccelerationStructureTag, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccelerationStructureTag, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AccelerationStructureTag
impl Display for AccelerationStructureTag
impl Eq for AccelerationStructureTag
Source§impl FromStr for AccelerationStructureTag
impl FromStr for AccelerationStructureTag
Source§impl Hash for AccelerationStructureTag
impl Hash for AccelerationStructureTag
Source§impl PartialEq for AccelerationStructureTag
impl PartialEq for AccelerationStructureTag
Source§impl Serialize for AccelerationStructureTag
impl Serialize for AccelerationStructureTag
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 AccelerationStructureTag
Source§impl TokRepr for AccelerationStructureTag
impl TokRepr for AccelerationStructureTag
fn tok_repr(&self) -> TokenStream
Auto Trait Implementations§
impl Freeze for AccelerationStructureTag
impl RefUnwindSafe for AccelerationStructureTag
impl Send for AccelerationStructureTag
impl Sync for AccelerationStructureTag
impl Unpin for AccelerationStructureTag
impl UnsafeUnpin for AccelerationStructureTag
impl UnwindSafe for AccelerationStructureTag
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more