5 lines
78 B
Rust
5 lines
78 B
Rust
|
pub struct Fixed<I,Frac>{
|
||
|
bits:I,
|
||
|
phantom:std::marker::PhantomData<Frac>,
|
||
|
}
|