pub trait Source { type Error; // Required method fn source(&self) -> Result<Source, Self::Error>; }
The source of a binary.
The type returned in the event of an error.
Defines the source of a binary.