pub trait TokenSink: Send + Sync {
// Required methods
fn sink(&self, server_name: &str, token: Vec<u8>);
fn fetch_token(&self, server_name: &str) -> Vec<u8> ⓘ;
}
pub trait TokenSink: Send + Sync {
// Required methods
fn sink(&self, server_name: &str, token: Vec<u8>);
fn fetch_token(&self, server_name: &str) -> Vec<u8> ⓘ;
}