[][src]Trait conventus::DisassembleFrom

pub trait DisassembleFrom<S> where
    Self: Sized
{ type Error: Error; fn disassemble_from(composite: S) -> Result<Vec<Self>, Self::Error>; }

Converts a composite of type S into a Vec<Self>.

Associated Types

type Error: Error

The type of the error that could be thrown during disassembly.

Loading content...

Required methods

fn disassemble_from(composite: S) -> Result<Vec<Self>, Self::Error>

Converts composite into a Vec<Self>.

Loading content...

Implementors

Loading content...