Source

Trait Source 

Source
pub trait Source {
    type Error;

    // Required method
    fn source(&self) -> Result<Source, Self::Error>;
}
Expand description

The source of a binary.

Required Associated Types§

Source

type Error

The type returned in the event of an error.

Required Methods§

Source

fn source(&self) -> Result<Source, Self::Error>

Defines the source of a binary.

Implementors§