#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)]
pub struct PlanOptions {
pub include_graph_inputs: bool,
}
impl PlanOptions {
pub fn new() -> Self {
Self::default()
}
pub fn with_graph_inputs(mut self, include: bool) -> Self {
self.include_graph_inputs = include;
self
}
}