#[repr(C)]pub struct krb5_creds {
pub magic: krb5_magic,
pub client: krb5_principal,
pub server: krb5_principal,
pub keyblock: krb5_keyblock,
pub times: krb5_ticket_times,
pub is_skey: krb5_boolean,
pub ticket_flags: krb5_flags,
pub addresses: *mut *mut krb5_address,
pub ticket: krb5_data,
pub second_ticket: krb5_data,
pub authdata: *mut *mut krb5_authdata,
}Fields§
§magic: krb5_magic§client: krb5_principal§server: krb5_principal§keyblock: krb5_keyblock§times: krb5_ticket_times§is_skey: krb5_boolean§ticket_flags: krb5_flags§addresses: *mut *mut krb5_address§ticket: krb5_data§second_ticket: krb5_data§authdata: *mut *mut krb5_authdataAuto Trait Implementations§
impl Freeze for krb5_creds
impl RefUnwindSafe for krb5_creds
impl !Send for krb5_creds
impl !Sync for krb5_creds
impl Unpin for krb5_creds
impl UnwindSafe for krb5_creds
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