pub trait Chisel: Default {
    type Value;
    fn end() -> Self;
fn is_end(&self) -> bool;
fn value(self) -> Option<Self::Value>;
fn value_ref(&self) -> Option<&Self::Value>; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors