Trait ckb_types::prelude::FromSliceShouldBeOk[][src]

pub trait FromSliceShouldBeOk<'r>: Reader<'r> {
    fn from_slice_should_be_ok(slice: &'r [u8]) -> Self;
}
Expand description

An alias of from_slice(..) to mark where we are really have confidence to do unwrap on the result of from_slice(..).

Required methods

Unwraps the result of from_slice(..) with confidence and we assume that it’s impossible to fail.

Implementors