INNER CODE UNIT · Rust
from
zkonduit/ezkl · src/lib.rs:91
fn from(s: &str) -> Self {
EZKLError::UncategorizedError(s.to_string())
}
}
impl From<String> for EZKLError {
fn from(s: String) -> Self {
EZKLError::UncategorizedError(s)
}
}
use circuit::{table::Range, CheckMode};
#[cfg(all(feature = "ezkl", not(target_arch = "wasm32")))]
use clap::Args;
use fieldutils::IntegerRep;
use graph::{Visibility, MAX_PUBLIC_SRS};
use serde::{Deserialize, Serialize};
#[cfg(all(feature = "ezkl", not(target_arch = "wasm32")))]
use tosubcommand::ToFlags;