[]Struct sspi::ServerRequestFlags

pub struct ServerRequestFlags { /* fields omitted */ }

Specify the attributes required by the server to establish the context. Bit flags can be combined by using bitwise-OR operations.

MSDN

Methods

impl ServerRequestFlags

pub const DELEGATE: ServerRequestFlags

The server is allowed to impersonate the client. Ignore this flag for constrained delegation.

pub const MUTUAL_AUTH: ServerRequestFlags

pub const REPLAY_DETECT: ServerRequestFlags

Detect replayed packets.

pub const SEQUENCE_DETECT: ServerRequestFlags

Detect messages received out of sequence.

pub const CONFIDENTIALITY: ServerRequestFlags

pub const USE_SESSION_KEY: ServerRequestFlags

pub const SESSION_TICKET: ServerRequestFlags

pub const ALLOCATE_MEMORY: ServerRequestFlags

Credential Security Support Provider (CredSSP) will allocate output buffers.

pub const USE_DCE_STYLE: ServerRequestFlags

pub const DATAGRAM: ServerRequestFlags

pub const CONNECTION: ServerRequestFlags

The security context will not handle formatting messages.

pub const CALL_LEVEL: ServerRequestFlags

pub const FRAGMENT_SUPPLIED: ServerRequestFlags

pub const EXTENDED_ERROR: ServerRequestFlags

When errors occur, the remote party will be notified.

pub const STREAM: ServerRequestFlags

Support a stream-oriented connection.

pub const INTEGRITY: ServerRequestFlags

pub const LICENSING: ServerRequestFlags

pub const IDENTIFY: ServerRequestFlags

pub const ALLOW_NULL_SESSION: ServerRequestFlags

pub const ALLOW_NON_USER_LOGONS: ServerRequestFlags

pub const ALLOW_CONTEXT_REPLAY: ServerRequestFlags

pub const FRAGMENT_TO_FIT: ServerRequestFlags

pub const NO_TOKEN: ServerRequestFlags

pub const PROXY_BINDINGS: ServerRequestFlags

pub const ALLOW_MISSING_BINDINGS: ServerRequestFlags

pub const fn empty() -> ServerRequestFlags

Returns an empty set of flags

pub const fn all() -> ServerRequestFlags

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

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

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

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

Trait Implementations

impl Extend<ServerRequestFlags> for ServerRequestFlags

impl Clone for ServerRequestFlags

impl Copy for ServerRequestFlags

impl Eq for ServerRequestFlags

impl Ord for ServerRequestFlags

impl PartialEq<ServerRequestFlags> for ServerRequestFlags

impl PartialOrd<ServerRequestFlags> for ServerRequestFlags

impl Debug for ServerRequestFlags

impl Sub<ServerRequestFlags> for ServerRequestFlags

type Output = ServerRequestFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<ServerRequestFlags> for ServerRequestFlags

fn sub_assign(&mut self, other: ServerRequestFlags)

Disables all flags enabled in the set.

impl Not for ServerRequestFlags

type Output = ServerRequestFlags

The resulting type after applying the ! operator.

fn not(self) -> ServerRequestFlags

Returns the complement of this set of flags.

impl BitAnd<ServerRequestFlags> for ServerRequestFlags

type Output = ServerRequestFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitOr<ServerRequestFlags> for ServerRequestFlags

type Output = ServerRequestFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitXor<ServerRequestFlags> for ServerRequestFlags

type Output = ServerRequestFlags

The resulting type after applying the ^ operator.

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

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

impl BitAndAssign<ServerRequestFlags> for ServerRequestFlags

fn bitand_assign(&mut self, other: ServerRequestFlags)

Disables all flags disabled in the set.

impl BitOrAssign<ServerRequestFlags> for ServerRequestFlags

fn bitor_assign(&mut self, other: ServerRequestFlags)

Adds the set of flags.

impl BitXorAssign<ServerRequestFlags> for ServerRequestFlags

fn bitxor_assign(&mut self, other: ServerRequestFlags)

Toggles the set of flags.

impl Hash for ServerRequestFlags

impl FromIterator<ServerRequestFlags> for ServerRequestFlags

impl Octal for ServerRequestFlags

impl Binary for ServerRequestFlags

impl LowerHex for ServerRequestFlags

impl UpperHex for ServerRequestFlags

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self