pub struct PTextureCaps(/* private fields */);Expand description
[docs.microsoft.com] D3DPTEXTURECAPS_*
Implementations§
Source§impl PTextureCaps
impl PTextureCaps
Source§impl PTextureCaps
impl PTextureCaps
pub const None: PTextureCaps
pub const Alpha: PTextureCaps
pub const AlphaPalette: PTextureCaps
pub const CubeMap: PTextureCaps
pub const CubeMapPow2: PTextureCaps
pub const MipCubeMap: PTextureCaps
pub const MipMap: PTextureCaps
pub const MipVolumeMap: PTextureCaps
pub const NonPow2Conditional: PTextureCaps
pub const NoProjectedBumpEnv: PTextureCaps
pub const Perspective: PTextureCaps
pub const Pow2: PTextureCaps
pub const Projected: PTextureCaps
pub const SquareOnly: PTextureCaps
pub const TexRepeatNotScaledBySize: PTextureCaps
pub const VolumeMap: PTextureCaps
pub const VolumeMapPow2: PTextureCaps
Trait Implementations§
Source§impl BitOr for PTextureCaps
impl BitOr for PTextureCaps
Source§impl BitOrAssign for PTextureCaps
impl BitOrAssign for PTextureCaps
Source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Performs the
|= operation. Read moreSource§impl Clone for PTextureCaps
impl Clone for PTextureCaps
Source§fn clone(&self) -> PTextureCaps
fn clone(&self) -> PTextureCaps
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PTextureCaps
impl Debug for PTextureCaps
Source§impl Default for PTextureCaps
impl Default for PTextureCaps
Source§fn default() -> PTextureCaps
fn default() -> PTextureCaps
Returns the “default value” for a type. Read more
Source§impl From<PTextureCaps> for DWORD
impl From<PTextureCaps> for DWORD
Source§fn from(value: PTextureCaps) -> Self
fn from(value: PTextureCaps) -> Self
Converts to this type from the input type.
Source§impl Hash for PTextureCaps
impl Hash for PTextureCaps
Source§impl Ord for PTextureCaps
impl Ord for PTextureCaps
Source§fn cmp(&self, other: &PTextureCaps) -> Ordering
fn cmp(&self, other: &PTextureCaps) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PTextureCaps
impl PartialEq for PTextureCaps
Source§impl PartialOrd for PTextureCaps
impl PartialOrd for PTextureCaps
impl Copy for PTextureCaps
impl Eq for PTextureCaps
impl Pod for PTextureCaps
impl StructuralPartialEq for PTextureCaps
Auto Trait Implementations§
impl Freeze for PTextureCaps
impl RefUnwindSafe for PTextureCaps
impl Send for PTextureCaps
impl Sync for PTextureCaps
impl Unpin for PTextureCaps
impl UnwindSafe for PTextureCaps
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.