pub trait ArchToDeref<D>
where D: Deref,
{ // Required method fn arch_deref(self) -> Result<D, String>; }
Expand description

Convert slx archive to dereferencing

  • D : type of dereferencing

Required Methods§

source

fn arch_deref(self) -> Result<D, String>

Convert slx archive to dereferencing

  • Output: dereferencing or error

Implementors§

source§

impl<'a, T, D> ArchToDeref<D> for &'a ArchData<T>
where T: SlxData, D: DerefArch<'a, T>,