[][src]Trait conventus::DisassembleInto

pub trait DisassembleInto<N> {
    type Error: Error;
    fn disassemble_into(self) -> Result<Vec<N>, Self::Error>;
}

Converts Self into a Vec<N>.

Associated Types

type Error: Error

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

Loading content...

Required methods

fn disassemble_into(self) -> Result<Vec<N>, Self::Error>

Converts self into a Vec<N>.

Loading content...

Implementors

impl<N, S> DisassembleInto<N> for S where
    N: DisassembleFrom<S>, 
[src]

type Error = <N as DisassembleFrom<Self>>::Error

Loading content...