pub struct FibonacciInput<F: Field> { /* private fields */ }Expand description
Input to the Fibonacci AIR: initial values and step count.
§Examples
use field_cat::F101;
use machine_cat::{FibonacciInput, StepCount};
let input = FibonacciInput::new(F101::new(1), F101::new(1), StepCount::new(7));Implementations§
Source§impl<F: Field> FibonacciInput<F>
impl<F: Field> FibonacciInput<F>
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for FibonacciInput<F>where
F: Freeze,
impl<F> RefUnwindSafe for FibonacciInput<F>where
F: RefUnwindSafe,
impl<F> Send for FibonacciInput<F>where
F: Send,
impl<F> Sync for FibonacciInput<F>where
F: Sync,
impl<F> Unpin for FibonacciInput<F>where
F: Unpin,
impl<F> UnsafeUnpin for FibonacciInput<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for FibonacciInput<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more