pub enum SteamConfigError {
NoDefaultCompatToolAttribute,
IoError {
source: Error,
},
}
Expand description
Error for Steam config related problems.
Variants§
NoDefaultCompatToolAttribute
The Steam config contains no CompatToolMapping
group/array.
IoError
An IO error occurred while working with the Steam config.
Trait Implementations§
Source§impl Debug for SteamConfigError
impl Debug for SteamConfigError
Source§impl Display for SteamConfigError
impl Display for SteamConfigError
Source§impl Error for SteamConfigError
impl Error for SteamConfigError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SteamConfigError
impl !RefUnwindSafe for SteamConfigError
impl Send for SteamConfigError
impl Sync for SteamConfigError
impl Unpin for SteamConfigError
impl !UnwindSafe for SteamConfigError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more