[][src]Struct stockton_bsp::lumps::textures::ContentsFlags

pub struct ContentsFlags { /* fields omitted */ }

Extracted from the Q3 arena engine code. Less documented than SurfaceFlags. https://github.com/id-Software/Quake-III-Arena/blob/master/code/game/surfaceflags.h

Implementations

impl ContentsFlags[src]

pub const SOLID: ContentsFlags[src]

pub const LAVA: ContentsFlags[src]

pub const SLIME: ContentsFlags[src]

pub const WATER: ContentsFlags[src]

pub const FOG: ContentsFlags[src]

pub const NOT_TEAM1: ContentsFlags[src]

pub const NOT_TEAM2: ContentsFlags[src]

pub const NOT_BOT_CLIP: ContentsFlags[src]

pub const AREA_PORTAL: ContentsFlags[src]

pub const PLAYER_CLIP: ContentsFlags[src]

bot specific contents type

pub const MONSTER_CLIP: ContentsFlags[src]

bot specific contents type

pub const TELEPORTER: ContentsFlags[src]

pub const JUMP_PAD: ContentsFlags[src]

pub const CLUSTER_PORTAL: ContentsFlags[src]

pub const DO_NOT_ENTER: ContentsFlags[src]

pub const BOT_CLIP: ContentsFlags[src]

pub const MOVER: ContentsFlags[src]

pub const ORIGIN: ContentsFlags[src]

pub const BODY: ContentsFlags[src]

pub const DETAIL: ContentsFlags[src]

brush not used for the bsp

pub const CORPSE: ContentsFlags[src]

brush not used for the bsp

pub const STRUCTURAL: ContentsFlags[src]

brushes used for the bsp

pub const TRANSLUCENT: ContentsFlags[src]

don't consume surface fragments inside

pub const TRIGGER: ContentsFlags[src]

pub const NODROP: ContentsFlags[src]

don't leave bodies or items (death fog, lava)

pub const fn empty() -> ContentsFlags[src]

Returns an empty set of flags

pub const fn all() -> ContentsFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<ContentsFlags>[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: u32) -> ContentsFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> ContentsFlags[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: ContentsFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: ContentsFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: ContentsFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ContentsFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ContentsFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: ContentsFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for ContentsFlags[src]

impl BitAnd<ContentsFlags> for ContentsFlags[src]

type Output = ContentsFlags

The resulting type after applying the & operator.

fn bitand(self, other: ContentsFlags) -> ContentsFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<ContentsFlags> for ContentsFlags[src]

fn bitand_assign(&mut self, other: ContentsFlags)[src]

Disables all flags disabled in the set.

impl BitOr<ContentsFlags> for ContentsFlags[src]

type Output = ContentsFlags

The resulting type after applying the | operator.

fn bitor(self, other: ContentsFlags) -> ContentsFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<ContentsFlags> for ContentsFlags[src]

fn bitor_assign(&mut self, other: ContentsFlags)[src]

Adds the set of flags.

impl BitXor<ContentsFlags> for ContentsFlags[src]

type Output = ContentsFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: ContentsFlags) -> ContentsFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<ContentsFlags> for ContentsFlags[src]

fn bitxor_assign(&mut self, other: ContentsFlags)[src]

Toggles the set of flags.

impl Clone for ContentsFlags[src]

impl Copy for ContentsFlags[src]

impl Debug for ContentsFlags[src]

impl Eq for ContentsFlags[src]

impl Extend<ContentsFlags> for ContentsFlags[src]

impl FromIterator<ContentsFlags> for ContentsFlags[src]

impl Hash for ContentsFlags[src]

impl LowerHex for ContentsFlags[src]

impl Not for ContentsFlags[src]

type Output = ContentsFlags

The resulting type after applying the ! operator.

fn not(self) -> ContentsFlags[src]

Returns the complement of this set of flags.

impl Octal for ContentsFlags[src]

impl Ord for ContentsFlags[src]

impl PartialEq<ContentsFlags> for ContentsFlags[src]

impl PartialOrd<ContentsFlags> for ContentsFlags[src]

impl StructuralEq for ContentsFlags[src]

impl StructuralPartialEq for ContentsFlags[src]

impl Sub<ContentsFlags> for ContentsFlags[src]

type Output = ContentsFlags

The resulting type after applying the - operator.

fn sub(self, other: ContentsFlags) -> ContentsFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<ContentsFlags> for ContentsFlags[src]

fn sub_assign(&mut self, other: ContentsFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for ContentsFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,