Struct openxr_sys::RenderModelFlagsFB
source · [−]#[repr(transparent)]pub struct RenderModelFlagsFB(_);Expand description
Implementations
sourceimpl RenderModelFlagsFB
impl RenderModelFlagsFB
sourcepub const SUPPORTS_GLTF_2_0_SUBSET_1: RenderModelFlagsFB = _
pub const SUPPORTS_GLTF_2_0_SUBSET_1: RenderModelFlagsFB = _
Minimal level of support. Can only contain a single mesh. Can only contain a single texture. Can not contain transparency. Assumes unlit rendering. Requires Extension KHR_texturebasisu.
sourcepub const SUPPORTS_GLTF_2_0_SUBSET_2: RenderModelFlagsFB = _
pub const SUPPORTS_GLTF_2_0_SUBSET_2: RenderModelFlagsFB = _
All of XR_RENDER_MODEL_SUPPORTS_GLTF_2_0_SUBSET_1_BIT_FB support plus: Multiple meshes. Multiple Textures. Texture Transparency.
sourceimpl RenderModelFlagsFB
impl RenderModelFlagsFB
pub const EMPTY: Self = _
pub fn from_raw(x: u64) -> Self
pub fn into_raw(self) -> u64
pub fn is_empty(self) -> bool
pub fn intersects(self, other: RenderModelFlagsFB) -> bool
sourcepub fn contains(self, other: RenderModelFlagsFB) -> bool
pub fn contains(self, other: RenderModelFlagsFB) -> bool
Returns whether other is a subset of self
Trait Implementations
sourceimpl BitAnd<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitAnd<RenderModelFlagsFB> for RenderModelFlagsFB
type Output = RenderModelFlagsFB
type Output = RenderModelFlagsFB
The resulting type after applying the
& operator.sourcefn bitand(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
fn bitand(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
Performs the
& operation. Read moresourceimpl BitAndAssign<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitAndAssign<RenderModelFlagsFB> for RenderModelFlagsFB
sourcefn bitand_assign(&mut self, rhs: RenderModelFlagsFB)
fn bitand_assign(&mut self, rhs: RenderModelFlagsFB)
Performs the
&= operation. Read moresourceimpl BitOr<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitOr<RenderModelFlagsFB> for RenderModelFlagsFB
type Output = RenderModelFlagsFB
type Output = RenderModelFlagsFB
The resulting type after applying the
| operator.sourcefn bitor(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
fn bitor(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
Performs the
| operation. Read moresourceimpl BitOrAssign<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitOrAssign<RenderModelFlagsFB> for RenderModelFlagsFB
sourcefn bitor_assign(&mut self, rhs: RenderModelFlagsFB)
fn bitor_assign(&mut self, rhs: RenderModelFlagsFB)
Performs the
|= operation. Read moresourceimpl BitXor<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitXor<RenderModelFlagsFB> for RenderModelFlagsFB
type Output = RenderModelFlagsFB
type Output = RenderModelFlagsFB
The resulting type after applying the
^ operator.sourcefn bitxor(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
fn bitxor(self, rhs: RenderModelFlagsFB) -> RenderModelFlagsFB
Performs the
^ operation. Read moresourceimpl BitXorAssign<RenderModelFlagsFB> for RenderModelFlagsFB
impl BitXorAssign<RenderModelFlagsFB> for RenderModelFlagsFB
sourcefn bitxor_assign(&mut self, rhs: RenderModelFlagsFB)
fn bitxor_assign(&mut self, rhs: RenderModelFlagsFB)
Performs the
^= operation. Read moresourceimpl Clone for RenderModelFlagsFB
impl Clone for RenderModelFlagsFB
sourcefn clone(&self) -> RenderModelFlagsFB
fn clone(&self) -> RenderModelFlagsFB
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RenderModelFlagsFB
impl Debug for RenderModelFlagsFB
sourceimpl Default for RenderModelFlagsFB
impl Default for RenderModelFlagsFB
sourceimpl Not for RenderModelFlagsFB
impl Not for RenderModelFlagsFB
type Output = RenderModelFlagsFB
type Output = RenderModelFlagsFB
The resulting type after applying the
! operator.sourcefn not(self) -> RenderModelFlagsFB
fn not(self) -> RenderModelFlagsFB
Performs the unary
! operation. Read moresourceimpl PartialEq<RenderModelFlagsFB> for RenderModelFlagsFB
impl PartialEq<RenderModelFlagsFB> for RenderModelFlagsFB
sourcefn eq(&self, other: &RenderModelFlagsFB) -> bool
fn eq(&self, other: &RenderModelFlagsFB) -> bool
impl Copy for RenderModelFlagsFB
impl Eq for RenderModelFlagsFB
impl StructuralEq for RenderModelFlagsFB
impl StructuralPartialEq for RenderModelFlagsFB
Auto Trait Implementations
impl RefUnwindSafe for RenderModelFlagsFB
impl Send for RenderModelFlagsFB
impl Sync for RenderModelFlagsFB
impl Unpin for RenderModelFlagsFB
impl UnwindSafe for RenderModelFlagsFB
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more