iread_n_const
: unwrap
->expect
This commit is contained in:
parent
8558b8d1ba
commit
cb56595d45
@ -26,7 +26,11 @@ pub trait InliningExt<E>: Inlining {
|
|||||||
self,
|
self,
|
||||||
err: impl FnOnce(&[u8]) -> E,
|
err: impl FnOnce(&[u8]) -> E,
|
||||||
) -> Result<([u8; N], Self), E> {
|
) -> Result<([u8; N], Self), E> {
|
||||||
self.iread_n(N, |slice| slice.try_into().unwrap(), err)
|
self.iread_n(
|
||||||
|
N,
|
||||||
|
|slice| slice.try_into().expect("iread_n wrong length."),
|
||||||
|
err,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user