pub enum ShipSlotError {
FailedToParseSlotNr(String),
HardpointSizeParseError(HardpointSizeError),
OptionalInternalSizeParseError(ParseIntError),
FailedToParse(String),
}
Variants§
FailedToParseSlotNr(String)
HardpointSizeParseError(HardpointSizeError)
OptionalInternalSizeParseError(ParseIntError)
FailedToParse(String)
Trait Implementations§
Source§impl Debug for ShipSlotError
impl Debug for ShipSlotError
Source§impl Display for ShipSlotError
impl Display for ShipSlotError
Source§impl Error for ShipSlotError
impl Error for ShipSlotError
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()
Source§impl From<HardpointSizeError> for ShipSlotError
impl From<HardpointSizeError> for ShipSlotError
Source§fn from(source: HardpointSizeError) -> Self
fn from(source: HardpointSizeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ShipSlotError
impl RefUnwindSafe for ShipSlotError
impl Send for ShipSlotError
impl Sync for ShipSlotError
impl Unpin for ShipSlotError
impl UnwindSafe for ShipSlotError
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