pub struct KeyText<V: Version, K: KeyType> { /* private fields */ }Expand description
A plaintext encoding of a key.
Be advised that this encoding has no extra security, so it is not safe to transport as is.
Implementations§
Trait Implementations§
Source§impl<V: Version, K: KeyType> Ord for KeyText<V, K>
impl<V: Version, K: KeyType> Ord for KeyText<V, K>
Source§impl<V: Version, K: KeyType> PartialOrd for KeyText<V, K>
impl<V: Version, K: KeyType> PartialOrd for KeyText<V, K>
impl<V: Version, K: KeyType> Eq for KeyText<V, K>
Auto Trait Implementations§
impl<V, K> Freeze for KeyText<V, K>
impl<V, K> RefUnwindSafe for KeyText<V, K>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<V, K> Send for KeyText<V, K>
impl<V, K> Sync for KeyText<V, K>
impl<V, K> Unpin for KeyText<V, K>
impl<V, K> UnwindSafe for KeyText<V, K>where
V: UnwindSafe,
K: UnwindSafe,
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