Struct CREDENTIALA
#[repr(C)]pub struct CREDENTIALA {
pub Flags: CRED_FLAGS,
pub Type: CRED_TYPE,
pub TargetName: PSTR,
pub Comment: PSTR,
pub LastWritten: FILETIME,
pub CredentialBlobSize: u32,
pub CredentialBlob: *mut u8,
pub Persist: CRED_PERSIST,
pub AttributeCount: u32,
pub Attributes: *mut CREDENTIAL_ATTRIBUTEA,
pub TargetAlias: PSTR,
pub UserName: PSTR,
}
Fields§
§Flags: CRED_FLAGS
§Type: CRED_TYPE
§TargetName: PSTR
§Comment: PSTR
§LastWritten: FILETIME
§CredentialBlobSize: u32
§CredentialBlob: *mut u8
§Persist: CRED_PERSIST
§AttributeCount: u32
§Attributes: *mut CREDENTIAL_ATTRIBUTEA
§TargetAlias: PSTR
§UserName: PSTR
Trait Implementations§
§impl Clone for CREDENTIALA
impl Clone for CREDENTIALA
§fn clone(&self) -> CREDENTIALA
fn clone(&self) -> CREDENTIALA
Returns a copy 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 moreimpl Copy for CREDENTIALA
Auto Trait Implementations§
impl Freeze for CREDENTIALA
impl RefUnwindSafe for CREDENTIALA
impl !Send for CREDENTIALA
impl !Sync for CREDENTIALA
impl Unpin for CREDENTIALA
impl UnwindSafe for CREDENTIALA
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