Struct gfx_hal::memory::Properties [−][src]
pub struct Properties { /* fields omitted */ }
Memory property flags.
Implementations
impl Properties
[src]
impl Properties
[src]pub const DEVICE_LOCAL: Properties
[src]
Device local memory on the GPU.
pub const CPU_VISIBLE: Properties
[src]
Host visible memory can be accessed by the CPU.
Backends must provide at least one cpu visible memory.
pub const COHERENT: Properties
[src]
CPU-GPU coherent.
Non-coherent memory requires explicit flushing.
pub const CPU_CACHED: Properties
[src]
Cached memory by the CPU
pub const LAZILY_ALLOCATED: Properties
[src]
Memory that may be lazily allocated as needed on the GPU and must not be visible to the CPU.
pub const fn empty() -> Properties
[src]
Returns an empty set of flags
pub const fn all() -> Properties
[src]
Returns the set containing all flags.
pub const fn bits(&self) -> u16
[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u16) -> Option<Properties>
[src]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u16) -> Properties
[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u16) -> Properties
[src]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: Properties) -> bool
[src]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: Properties) -> bool
[src]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: Properties)
[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: Properties)
[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: Properties)
[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: Properties, value: bool)
[src]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl BitAnd<Properties> for Properties
[src]
impl BitAnd<Properties> for Properties
[src]type Output = Properties
The resulting type after applying the &
operator.
fn bitand(self, other: Properties) -> Properties
[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<Properties> for Properties
[src]
impl BitAndAssign<Properties> for Properties
[src]fn bitand_assign(&mut self, other: Properties)
[src]
Disables all flags disabled in the set.
impl BitOr<Properties> for Properties
[src]
impl BitOr<Properties> for Properties
[src]type Output = Properties
The resulting type after applying the |
operator.
fn bitor(self, other: Properties) -> Properties
[src]
Returns the union of the two sets of flags.
impl BitOrAssign<Properties> for Properties
[src]
impl BitOrAssign<Properties> for Properties
[src]fn bitor_assign(&mut self, other: Properties)
[src]
Adds the set of flags.
impl BitXor<Properties> for Properties
[src]
impl BitXor<Properties> for Properties
[src]type Output = Properties
The resulting type after applying the ^
operator.
fn bitxor(self, other: Properties) -> Properties
[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<Properties> for Properties
[src]
impl BitXorAssign<Properties> for Properties
[src]fn bitxor_assign(&mut self, other: Properties)
[src]
Toggles the set of flags.
impl Clone for Properties
[src]
impl Clone for Properties
[src]fn clone(&self) -> Properties
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Properties
[src]
impl Copy for Properties
[src]impl Eq for Properties
[src]
impl Eq for Properties
[src]impl Extend<Properties> for Properties
[src]
impl Extend<Properties> for Properties
[src]fn extend<T: IntoIterator<Item = Properties>>(&mut self, iterator: T)
[src]
pub fn extend_one(&mut self, item: A)
[src]
pub fn extend_reserve(&mut self, additional: usize)
[src]
impl FromIterator<Properties> for Properties
[src]
impl FromIterator<Properties> for Properties
[src]fn from_iter<T: IntoIterator<Item = Properties>>(iterator: T) -> Properties
[src]
impl Hash for Properties
[src]
impl Hash for Properties
[src]impl Not for Properties
[src]
impl Not for Properties
[src]type Output = Properties
The resulting type after applying the !
operator.
fn not(self) -> Properties
[src]
Returns the complement of this set of flags.
impl Ord for Properties
[src]
impl Ord for Properties
[src]impl PartialEq<Properties> for Properties
[src]
impl PartialEq<Properties> for Properties
[src]fn eq(&self, other: &Properties) -> bool
[src]
fn ne(&self, other: &Properties) -> bool
[src]
impl PartialOrd<Properties> for Properties
[src]
impl PartialOrd<Properties> for Properties
[src]impl StructuralEq for Properties
[src]
impl StructuralEq for Properties
[src]impl StructuralPartialEq for Properties
[src]
impl StructuralPartialEq for Properties
[src]impl Sub<Properties> for Properties
[src]
impl Sub<Properties> for Properties
[src]type Output = Properties
The resulting type after applying the -
operator.
fn sub(self, other: Properties) -> Properties
[src]
Returns the set difference of the two sets of flags.
impl SubAssign<Properties> for Properties
[src]
impl SubAssign<Properties> for Properties
[src]fn sub_assign(&mut self, other: Properties)
[src]
Disables all flags enabled in the set.
Auto Trait Implementations
impl RefUnwindSafe for Properties
impl RefUnwindSafe for Properties
impl Send for Properties
impl Send for Properties
impl Sync for Properties
impl Sync for Properties
impl Unpin for Properties
impl Unpin for Properties
impl UnwindSafe for Properties
impl UnwindSafe for Properties