pub enum PerlConfigError {
CommandFailed(String),
ConfigNotFound(String),
ParseError(String),
}Expand description
Perl Config 取得エラー
Variants§
Trait Implementations§
Source§impl Debug for PerlConfigError
impl Debug for PerlConfigError
Source§impl Display for PerlConfigError
impl Display for PerlConfigError
Source§impl Error for PerlConfigError
impl Error for PerlConfigError
1.30.0 · 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<PerlConfigError> for ApidocResolveError
impl From<PerlConfigError> for ApidocResolveError
Source§fn from(e: PerlConfigError) -> Self
fn from(e: PerlConfigError) -> Self
Converts to this type from the input type.
Source§impl From<PerlConfigError> for InferError
impl From<PerlConfigError> for InferError
Source§fn from(e: PerlConfigError) -> Self
fn from(e: PerlConfigError) -> Self
Converts to this type from the input type.
Source§impl From<PerlConfigError> for PipelineError
impl From<PerlConfigError> for PipelineError
Source§fn from(e: PerlConfigError) -> Self
fn from(e: PerlConfigError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PerlConfigError
impl RefUnwindSafe for PerlConfigError
impl Send for PerlConfigError
impl Sync for PerlConfigError
impl Unpin for PerlConfigError
impl UnsafeUnpin for PerlConfigError
impl UnwindSafe for PerlConfigError
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