webauthn_rp

WebAuthn Level 3 RP library.
git clone https://git.philomathiclife.com/repos/webauthn_rp
Log | Files | Refs | README

custom.rs (191B)


      1 use super::UserHandle;
      2 impl<const LEN: usize> From<[u8; LEN]> for UserHandle<LEN>
      3 where
      4     Self: Default,
      5 {
      6     #[inline]
      7     fn from(value: [u8; LEN]) -> Self {
      8         Self(value)
      9     }
     10 }