[][src]Trait conventus::DisassembleInto

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

Disassembles Self into a sequence of Ps.

Associated Types

type Error[src]

Describes an error that prevents disassembly.

Loading content...

Required methods

pub fn disassemble_into(self) -> Result<Vec<P>, Self::Error>[src]

Disassembles self into a sequence of parts.

Errors

If disassembly fails, the cause of the failure SHALL be thrown.

Loading content...

Implementors

impl<P, C> DisassembleInto<P> for C where
    P: DisassembleFrom<C>, 
[src]

For every P that implements DisassembleFrom<C>, C SHALL implement DisassembleInto<P>.

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

Loading content...