8 lines
161 B
Rust
8 lines
161 B
Rust
use super::{Format, FastRealFormat};
|
|
|
|
pub struct StandardFormat;
|
|
|
|
impl Format for StandardFormat {
|
|
type Engine = ();
|
|
type RealFormat = FastRealFormat;
|
|
} |