pub trait TestCheckpoint: Ord + Clone + Debug {
    // Required method
    fn from_u64(value: u64) -> Self;
}
Available on crate feature test-dependencies only.

Required Methods§

source

fn from_u64(value: u64) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TestCheckpoint for usize

source§

fn from_u64(value: u64) -> Self

Implementors§