#[repr(C)]pub struct COAUTHINFO<'a, 'b, 'c, 'd, 'e> {
pub dwAuthnSvc: RPC_C_AUTHN,
pub dwAuthzSvc: RPC_C_AUTHZ,
pub dwAuthnLevel: RPC_C_AUTHN_LEVEL,
pub dwImpersonationLevel: RPC_C_IMP_LEVEL,
pub dwCapabilities: RPC_C_QOS_CAPABILITIES,
/* private fields */
}
Available on crate feature
ole
only.Expand description
COAUTHINFO
struct.
Fields§
§dwAuthnSvc: RPC_C_AUTHN
§dwAuthzSvc: RPC_C_AUTHZ
§dwAuthnLevel: RPC_C_AUTHN_LEVEL
§dwImpersonationLevel: RPC_C_IMP_LEVEL
§dwCapabilities: RPC_C_QOS_CAPABILITIES
Implementations§
Source§impl<'a, 'b, 'c, 'd, 'e> COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> COAUTHINFO<'a, 'b, 'c, 'd, 'e>
Sourcepub fn pwszServerPrincName(&self) -> Option<String>
pub fn pwszServerPrincName(&self) -> Option<String>
Returns the string field, if any.
Sourcepub fn set_pwszServerPrincName(&mut self, buf: Option<&'a mut WString>)
pub fn set_pwszServerPrincName(&mut self, buf: Option<&'a mut WString>)
Sets the string field.
Sourcepub fn pAuthIdentityData(&self) -> Option<&'b mut COAUTHIDENTITY<'c, 'd, 'e>>
pub fn pAuthIdentityData(&self) -> Option<&'b mut COAUTHIDENTITY<'c, 'd, 'e>>
Returns the pointer field.
Sourcepub fn set_pAuthIdentityData(
&mut self,
obj: Option<&'b mut COAUTHIDENTITY<'c, 'd, 'e>>,
)
pub fn set_pAuthIdentityData( &mut self, obj: Option<&'b mut COAUTHIDENTITY<'c, 'd, 'e>>, )
Sets the pointer field.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, 'c, 'd, 'e> Freeze for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> RefUnwindSafe for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> !Send for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> !Sync for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> Unpin for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
impl<'a, 'b, 'c, 'd, 'e> !UnwindSafe for COAUTHINFO<'a, 'b, 'c, 'd, 'e>
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