#[repr(C)]pub struct _krb5_key_data {
pub key_data_ver: krb5_int16,
pub key_data_kvno: krb5_ui_2,
pub key_data_type: [krb5_int16; 2],
pub key_data_length: [krb5_ui_2; 2],
pub key_data_contents: [*mut krb5_octet; 2],
}Expand description
If this ever changes up the version number and make the arrays be as big as necessary.
Currently the first type is the enctype and the second is the salt type.
Fields§
§key_data_ver: krb5_int16Version
key_data_kvno: krb5_ui_2Key Version
key_data_type: [krb5_int16; 2]Array of types
key_data_length: [krb5_ui_2; 2]Array of lengths
key_data_contents: [*mut krb5_octet; 2]Array of pointers
Trait Implementations§
Source§impl Clone for _krb5_key_data
impl Clone for _krb5_key_data
Source§fn clone(&self) -> _krb5_key_data
fn clone(&self) -> _krb5_key_data
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 _krb5_key_data
impl Debug for _krb5_key_data
Source§impl Default for _krb5_key_data
impl Default for _krb5_key_data
impl Copy for _krb5_key_data
Auto Trait Implementations§
impl Freeze for _krb5_key_data
impl RefUnwindSafe for _krb5_key_data
impl !Send for _krb5_key_data
impl !Sync for _krb5_key_data
impl Unpin for _krb5_key_data
impl UnwindSafe for _krb5_key_data
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