Skip to main content

InputSlice

Trait InputSlice 

Source
pub trait InputSlice: View<V = Seq<u8>> + DeepView<V = Seq<u8>> {
    // Required method
    proof fn deep_view_eq_view(&self);
}
Expand description

A byte input whose ordinary and deep views denote the same byte sequence.

Required Methods§

Source

proof fn deep_view_eq_view(&self)

ensures
self.deep_view() == self@,

Proves that the two logical views of this input agree.

Implementations on Foreign Types§

Source§

impl<'input> InputSlice for &'input [u8]

Source§

proof fn deep_view_eq_view(&self)

Implementors§