shield 0.2.1

Web authentication for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use bon::Builder;

#[derive(Builder, Clone, Debug)]
#[builder(on(String, into), state_mod(vis = "pub(crate)"))]
pub struct ShieldOptions {}

impl Default for ShieldOptions {
    fn default() -> Self {
        Self::builder().build()
    }
}