Skip to content

Latest commit

 

History

History
67 lines (35 loc) · 1.19 KB

error.md

File metadata and controls

67 lines (35 loc) · 1.19 KB

core::error

Error reporting and error handling.

Types

Error

Error information of a failed Result.

Fields

Name Type Read-only Description
message string R/O
stack_trace core::error::StackEntry[] R/O

Methods

to_string
error.to_string ( ) -> string

StackEntry

Stacktrace entry.

Fields

Name Type Read-only Description
arguments string[] R/O
line int R/O
name string R/O
source_name string R/O

Methods

to_string
stackentry.to_string ( ) -> string

Functions

current_stack

pub sync fn current_stack ( ) -> core::error::StackEntry[]

Get current stack.