pub struct DerivedKeys {
pub auth_key: Option<LocalizedKey>,
pub priv_key: Option<PrivKey>,
}Expand description
Derived keys for a specific engine ID.
Used internally for V3 authentication in both client and notification receiver.
Fields§
§auth_key: Option<LocalizedKey>Localized authentication key
priv_key: Option<PrivKey>Privacy key
Auto Trait Implementations§
impl Freeze for DerivedKeys
impl RefUnwindSafe for DerivedKeys
impl Send for DerivedKeys
impl Sync for DerivedKeys
impl Unpin for DerivedKeys
impl UnwindSafe for DerivedKeys
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