//! # Token - Trait Implementations
//!
//! This module contains trait implementations for `Token`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::Token;
impl Default for Token {
fn default() -> Self {
Self::new()
}
}