pub enum InferError {
PerlConfig(PerlConfigError),
ApidocResolve(ApidocResolveError),
Compile(EnrichedCompileError),
Io(Error),
}Expand description
型推論エラー
Variants§
PerlConfig(PerlConfigError)
Perl 設定取得エラー
ApidocResolve(ApidocResolveError)
apidoc 解決エラー
Compile(EnrichedCompileError)
プリプロセッサ/パースエラー(ファイルパスと該当行で強化済み)
Io(Error)
ファイル I/O エラー
Trait Implementations§
Source§impl Debug for InferError
impl Debug for InferError
Source§impl Display for InferError
impl Display for InferError
Source§impl Error for InferError
impl Error for InferError
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<ApidocResolveError> for InferError
impl From<ApidocResolveError> for InferError
Source§fn from(e: ApidocResolveError) -> Self
fn from(e: ApidocResolveError) -> Self
Converts to this type from the input type.
Source§impl From<EnrichedCompileError> for InferError
impl From<EnrichedCompileError> for InferError
Source§fn from(e: EnrichedCompileError) -> Self
fn from(e: EnrichedCompileError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for InferError
impl From<Error> for InferError
Source§impl From<InferError> for PipelineError
impl From<InferError> for PipelineError
Source§fn from(e: InferError) -> Self
fn from(e: InferError) -> 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.
Auto Trait Implementations§
impl Freeze for InferError
impl !RefUnwindSafe for InferError
impl Send for InferError
impl Sync for InferError
impl Unpin for InferError
impl UnsafeUnpin for InferError
impl !UnwindSafe for InferError
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