pub struct SecurityBufferType {
pub buffer_type: BufferType,
pub buffer_flags: SecurityBufferFlags,
}Expand description
Security buffer type.
Contains the actual security buffer type and its flags.
Fields§
§buffer_type: BufferTypeSecurity buffer type.
buffer_flags: SecurityBufferFlagsSecurity buffer flags.
Implementations§
Source§impl SecurityBufferType
impl SecurityBufferType
Sourcepub const SECBUFFER_ATTRMASK: u32 = 0xf0000000
pub const SECBUFFER_ATTRMASK: u32 = 0xf0000000
The buffer contains a bitmask for a SECBUFFER_READONLY_WITH_CHECKSUM buffer.
Trait Implementations§
Source§impl Clone for SecurityBufferType
impl Clone for SecurityBufferType
Source§fn clone(&self) -> SecurityBufferType
fn clone(&self) -> SecurityBufferType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecurityBufferType
impl Debug for SecurityBufferType
Source§impl Default for SecurityBufferType
impl Default for SecurityBufferType
Source§fn default() -> SecurityBufferType
fn default() -> SecurityBufferType
Returns the “default value” for a type. Read more
Source§impl From<SecurityBufferType> for u32
impl From<SecurityBufferType> for u32
Source§fn from(value: SecurityBufferType) -> u32
fn from(value: SecurityBufferType) -> u32
Converts to this type from the input type.
Source§impl PartialEq for SecurityBufferType
impl PartialEq for SecurityBufferType
Source§impl TryFrom<u32> for SecurityBufferType
impl TryFrom<u32> for SecurityBufferType
impl Copy for SecurityBufferType
impl Eq for SecurityBufferType
impl StructuralPartialEq for SecurityBufferType
Auto Trait Implementations§
impl Freeze for SecurityBufferType
impl RefUnwindSafe for SecurityBufferType
impl Send for SecurityBufferType
impl Sync for SecurityBufferType
impl Unpin for SecurityBufferType
impl UnsafeUnpin for SecurityBufferType
impl UnwindSafe for SecurityBufferType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more