pub struct Aad(/* private fields */);Expand description
The finished AAD string for one leaf. Opaque on purpose.
There is no From<String>, no new, and no Deref<Target = str> — the only
way to obtain one is AadPath::aad. That is what makes rule 2 of the crate
docs structural rather than advisory.
Implementations§
Trait Implementations§
impl Eq for Aad
impl StructuralPartialEq for Aad
Auto Trait Implementations§
impl Freeze for Aad
impl RefUnwindSafe for Aad
impl Send for Aad
impl Sync for Aad
impl Unpin for Aad
impl UnsafeUnpin for Aad
impl UnwindSafe for Aad
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