pub trait UpdateTokenTrait: Send + Sync {
// Provided method
fn token_update(&self, _token: Token) -> bool { ... }
}
Provided Methods§
Sourcefn token_update(&self, _token: Token) -> bool
fn token_update(&self, _token: Token) -> bool
Provides a post-callback // token update mechansim that can be controlled by the caller Necessary for Token refresh implementation