Enum loadorder::Error
[−]
[src]
pub enum Error {
InvalidPath(PathBuf),
IoError(Error),
NoFilename,
SystemTimeError(SystemTimeError),
NotUtf8(Vec<u8>),
DecodeError(Cow<'static, str>),
EncodeError(Cow<'static, str>),
PluginParsingError,
PluginNotFound(String),
TooManyActivePlugins,
InvalidRegex,
DuplicatePlugin,
NonMasterBeforeMaster,
GameMasterMustLoadFirst,
InvalidPlugin(String),
ImplicitlyActivePlugin(String),
NoLocalAppData,
}Variants
InvalidPath(PathBuf)IoError(Error)NoFilenameSystemTimeError(SystemTimeError)NotUtf8(Vec<u8>)DecodeError(Cow<'static, str>)EncodeError(Cow<'static, str>)PluginParsingErrorPluginNotFound(String)TooManyActivePluginsInvalidRegexDuplicatePluginNonMasterBeforeMasterGameMasterMustLoadFirstInvalidPlugin(String)ImplicitlyActivePlugin(String)NoLocalAppData
Trait Implementations
impl Debug for Error[src]
impl From<Error> for Error[src]
impl From<SystemTimeError> for Error[src]
fn from(error: SystemTimeError) -> Self[src]
Performs the conversion.
impl From<Error> for Error[src]
impl From<FromUtf8Error> for Error[src]
fn from(error: FromUtf8Error) -> Self[src]
Performs the conversion.
impl From<Error> for Error[src]
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more