[]Struct ms_oforms::controls::form::stream::ClassInfoPropMask

pub struct ClassInfoPropMask { /* fields omitted */ }

Specifies the properties of the SiteClassInfo that contains this ClassInfoPropMask that are not set to the file format default.

For each bit, a value of zero specifies that the corresponding property is the file format default and is not stored in the file.

Methods

impl ClassInfoPropMask

pub const CLS_ID: ClassInfoPropMask

Specifies whether ExtraDataBlock.ClsID is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const DISP_EVENT: ClassInfoPropMask

Specifies whether ExtraDataBlock.DispEvent is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const DEFAULT_PROC: ClassInfoPropMask

Specifies whether ExtraDataBlock.DefaultProg is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const CLASS_FLAGS: ClassInfoPropMask

Specifies whether DataBlock.ClassTableFlags and DataBlock.VarFlags are stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const COUNT_OF_METHODS: ClassInfoPropMask

Specifies whether DataBlock.CountOfMethods is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const DISPID_BIND: ClassInfoPropMask

Specifies whether DataBlock.DispidBind is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const GET_BIND_INDEX: ClassInfoPropMask

Specifies whether DataBlock.GetBindIndex is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const PUT_BIND_INDEX: ClassInfoPropMask

Specifies whether DataBlock.PutBindIndex is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const BIND_TYPE: ClassInfoPropMask

Specifies whether DataBlock.BindType is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const GET_VALUE_INDEX: ClassInfoPropMask

Specifies whether DataBlock.GetValueIndex is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const PUT_VALUE_INDEX: ClassInfoPropMask

Specifies whether DataBlock.PutValueIndex is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const VALUE_TYPE: ClassInfoPropMask

Specifies whether DataBlock.ValueType is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const DISPID_ROWSET: ClassInfoPropMask

Specifies whether DataBlock.DispidRowset is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const SET_ROWSET: ClassInfoPropMask

Specifies whether DataBlock.SetRowset is stored in the SiteClassInfo that contains this ClassInfoPropMask.

pub const fn empty() -> ClassInfoPropMask

Returns an empty set of flags

pub const fn all() -> ClassInfoPropMask

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

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

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) -> ClassInfoPropMask

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

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

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

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl PartialEq<ClassInfoPropMask> for ClassInfoPropMask

impl Clone for ClassInfoPropMask

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

Performs copy-assignment from source. Read more

impl Extend<ClassInfoPropMask> for ClassInfoPropMask

impl PartialOrd<ClassInfoPropMask> for ClassInfoPropMask

impl Eq for ClassInfoPropMask

impl Ord for ClassInfoPropMask

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl Copy for ClassInfoPropMask

impl Debug for ClassInfoPropMask

impl Sub<ClassInfoPropMask> for ClassInfoPropMask

type Output = ClassInfoPropMask

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<ClassInfoPropMask> for ClassInfoPropMask

fn sub_assign(&mut self, other: ClassInfoPropMask)

Disables all flags enabled in the set.

impl Not for ClassInfoPropMask

type Output = ClassInfoPropMask

The resulting type after applying the ! operator.

fn not(self) -> ClassInfoPropMask

Returns the complement of this set of flags.

impl BitAnd<ClassInfoPropMask> for ClassInfoPropMask

type Output = ClassInfoPropMask

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<ClassInfoPropMask> for ClassInfoPropMask

type Output = ClassInfoPropMask

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<ClassInfoPropMask> for ClassInfoPropMask

type Output = ClassInfoPropMask

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<ClassInfoPropMask> for ClassInfoPropMask

fn bitand_assign(&mut self, other: ClassInfoPropMask)

Disables all flags disabled in the set.

impl BitOrAssign<ClassInfoPropMask> for ClassInfoPropMask

fn bitor_assign(&mut self, other: ClassInfoPropMask)

Adds the set of flags.

impl BitXorAssign<ClassInfoPropMask> for ClassInfoPropMask

fn bitxor_assign(&mut self, other: ClassInfoPropMask)

Toggles the set of flags.

impl Hash for ClassInfoPropMask

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 FromIterator<ClassInfoPropMask> for ClassInfoPropMask

impl Octal for ClassInfoPropMask

impl Binary for ClassInfoPropMask

impl LowerHex for ClassInfoPropMask

impl UpperHex for ClassInfoPropMask

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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