[]Struct libgssapi::context::CtxFlags

pub struct CtxFlags { /* fields omitted */ }

Methods

impl CtxFlags

pub const GSS_C_DELEG_FLAG: CtxFlags

pub const GSS_C_MUTUAL_FLAG: CtxFlags

pub const GSS_C_REPLAY_FLAG: CtxFlags

pub const GSS_C_SEQUENCE_FLAG: CtxFlags

pub const GSS_C_CONF_FLAG: CtxFlags

pub const GSS_C_INTEG_FLAG: CtxFlags

pub const GSS_C_ANON_FLAG: CtxFlags

pub const GSS_C_PROT_READY_FLAG: CtxFlags

pub const GSS_C_TRANS_FLAG: CtxFlags

pub const GSS_C_DELEG_POLICY_FLAG: CtxFlags

pub const fn empty() -> CtxFlags

Returns an empty set of flags

pub const fn all() -> CtxFlags

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<CtxFlags>

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

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

pub const unsafe fn from_bits_unchecked(bits: u32) -> CtxFlags

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

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: CtxFlags) -> bool

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Binary for CtxFlags

impl BitAnd<CtxFlags> for CtxFlags

type Output = CtxFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<CtxFlags> for CtxFlags

fn bitand_assign(&mut self, other: CtxFlags)

Disables all flags disabled in the set.

impl BitOr<CtxFlags> for CtxFlags

type Output = CtxFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitOrAssign<CtxFlags> for CtxFlags

fn bitor_assign(&mut self, other: CtxFlags)

Adds the set of flags.

impl BitXor<CtxFlags> for CtxFlags

type Output = CtxFlags

The resulting type after applying the ^ operator.

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

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

impl BitXorAssign<CtxFlags> for CtxFlags

fn bitxor_assign(&mut self, other: CtxFlags)

Toggles the set of flags.

impl Clone for CtxFlags

impl Copy for CtxFlags

impl Debug for CtxFlags

impl Eq for CtxFlags

impl Extend<CtxFlags> for CtxFlags

impl FromIterator<CtxFlags> for CtxFlags

impl Hash for CtxFlags

impl LowerHex for CtxFlags

impl Not for CtxFlags

type Output = CtxFlags

The resulting type after applying the ! operator.

fn not(self) -> CtxFlags

Returns the complement of this set of flags.

impl Octal for CtxFlags

impl Ord for CtxFlags

impl PartialEq<CtxFlags> for CtxFlags

impl PartialOrd<CtxFlags> for CtxFlags

impl StructuralEq for CtxFlags

impl StructuralPartialEq for CtxFlags

impl Sub<CtxFlags> for CtxFlags

type Output = CtxFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<CtxFlags> for CtxFlags

fn sub_assign(&mut self, other: CtxFlags)

Disables all flags enabled in the set.

impl UpperHex for CtxFlags

Auto Trait Implementations

impl RefUnwindSafe for CtxFlags

impl Send for CtxFlags

impl Sync for CtxFlags

impl Unpin for CtxFlags

impl UnwindSafe for CtxFlags

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> From<T> for T[src]

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

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.