[]Struct gdnative_core::init::PropertyUsage

pub struct PropertyUsage { /* fields omitted */ }

Methods

impl PropertyUsage

pub const STORAGE: PropertyUsage

pub const EDITOR: PropertyUsage

pub const NETWORK: PropertyUsage

pub const EDITOR_HELPER: PropertyUsage

pub const CHECKABLE: PropertyUsage

pub const CHECKED: PropertyUsage

pub const INTERNATIONALIZED: PropertyUsage

pub const GROUP: PropertyUsage

pub const CATEGORY: PropertyUsage

pub const STORE_IF_NONZERO: PropertyUsage

pub const STORE_IF_NONONE: PropertyUsage

pub const NO_INSTANCE_STATE: PropertyUsage

pub const RESTART_IF_CHANGED: PropertyUsage

pub const SCRIPT_VARIABLE: PropertyUsage

pub const STORE_IF_NULL: PropertyUsage

pub const ANIMATE_AS_TRIGGER: PropertyUsage

pub const UPDATE_ALL_IF_MODIFIED: PropertyUsage

pub const DEFAULT: PropertyUsage

pub const DEFAULT_INTL: PropertyUsage

pub const NOEDITOR: PropertyUsage

pub fn empty() -> PropertyUsage

Returns an empty set of flags.

pub fn all() -> PropertyUsage

Returns the set containing all flags.

pub fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<PropertyUsage>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub fn from_bits_truncate(bits: u32) -> PropertyUsage

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

pub fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub fn intersects(&self, other: PropertyUsage) -> bool

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

pub fn contains(&self, other: PropertyUsage) -> bool

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

pub fn insert(&mut self, other: PropertyUsage)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: PropertyUsage)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: PropertyUsage)

Toggles the specified flags in-place.

pub fn set(&mut self, other: PropertyUsage, value: bool)

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

impl PropertyUsage
[src]

Trait Implementations

impl Eq for PropertyUsage

impl Extend<PropertyUsage> for PropertyUsage

impl PartialOrd<PropertyUsage> for PropertyUsage

impl Copy for PropertyUsage

impl PartialEq<PropertyUsage> for PropertyUsage

impl Clone for PropertyUsage

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for PropertyUsage

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Binary for PropertyUsage

impl Debug for PropertyUsage

impl UpperHex for PropertyUsage

impl LowerHex for PropertyUsage

impl Octal for PropertyUsage

impl Hash for PropertyUsage

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Sub<PropertyUsage> for PropertyUsage

type Output = PropertyUsage

The resulting type after applying the - operator.

fn sub(self, other: PropertyUsage) -> PropertyUsage

Returns the set difference of the two sets of flags.

impl SubAssign<PropertyUsage> for PropertyUsage

fn sub_assign(&mut self, other: PropertyUsage)

Disables all flags enabled in the set.

impl Not for PropertyUsage

type Output = PropertyUsage

The resulting type after applying the ! operator.

fn not(self) -> PropertyUsage

Returns the complement of this set of flags.

impl BitAnd<PropertyUsage> for PropertyUsage

type Output = PropertyUsage

The resulting type after applying the & operator.

fn bitand(self, other: PropertyUsage) -> PropertyUsage

Returns the intersection between the two sets of flags.

impl BitOr<PropertyUsage> for PropertyUsage

type Output = PropertyUsage

The resulting type after applying the | operator.

fn bitor(self, other: PropertyUsage) -> PropertyUsage

Returns the union of the two sets of flags.

impl BitXor<PropertyUsage> for PropertyUsage

type Output = PropertyUsage

The resulting type after applying the ^ operator.

fn bitxor(self, other: PropertyUsage) -> PropertyUsage

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

impl BitAndAssign<PropertyUsage> for PropertyUsage

fn bitand_assign(&mut self, other: PropertyUsage)

Disables all flags disabled in the set.

impl BitOrAssign<PropertyUsage> for PropertyUsage

fn bitor_assign(&mut self, other: PropertyUsage)

Adds the set of flags.

impl BitXorAssign<PropertyUsage> for PropertyUsage

fn bitxor_assign(&mut self, other: PropertyUsage)

Toggles the set of flags.

impl FromIterator<PropertyUsage> for PropertyUsage

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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