#[repr(C)]pub struct krb5_string_attr_st {
pub key: *mut c_char,
pub value: *mut c_char,
}Expand description
String attributes (currently stored inside tl-data) map C string keys to values. They can be set via kadmin and consumed by KDC plugins.
Fields§
§key: *mut c_char§value: *mut c_charTrait Implementations§
Source§impl Clone for krb5_string_attr_st
impl Clone for krb5_string_attr_st
Source§fn clone(&self) -> krb5_string_attr_st
fn clone(&self) -> krb5_string_attr_st
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_string_attr_st
impl Debug for krb5_string_attr_st
Source§impl Default for krb5_string_attr_st
impl Default for krb5_string_attr_st
impl Copy for krb5_string_attr_st
Auto Trait Implementations§
impl Freeze for krb5_string_attr_st
impl RefUnwindSafe for krb5_string_attr_st
impl !Send for krb5_string_attr_st
impl !Sync for krb5_string_attr_st
impl Unpin for krb5_string_attr_st
impl UnwindSafe for krb5_string_attr_st
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