huskarl-core 0.6.1

Base library for huskarl (OAuth2 client) ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;

/// Prevents downstream crates from implementing `DPoP` traits.
///
/// Customise `DPoP` behaviour via the `Sgn` type parameter on [`super::DPoP`]
/// and [`super::ResourceDPoP`] rather than implementing the traits directly.
pub trait Sealed {}

impl<T: Sealed> Sealed for Arc<T> {}