mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-10 09:43:09 +00:00
9 lines
191 B
Rust
9 lines
191 B
Rust
|
|
#[derive(PartialEq, Eq, Debug, Clone)]
|
||
|
|
pub(crate) struct ProverInputFn(Vec<String>);
|
||
|
|
|
||
|
|
impl From<Vec<String>> for ProverInputFn {
|
||
|
|
fn from(v: Vec<String>) -> Self {
|
||
|
|
Self(v)
|
||
|
|
}
|
||
|
|
}
|