CellsException
Overview
CellsException is a struct in Aspose.Cells FOSS for Rust.
Inherits from: Debug, Default, Clone, and 4 more.
Represents an error that occurs during cells.
This struct provides 4 methods for working with CellsException objects in Rust programs.
Available methods include: fmt, from, new, with_inner.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Fields: inner_message, message.
Fields
| Name | Type | Access | Description |
|---|---|---|---|
message | String | Read/Write | Gets the message. |
inner_message | Option<String> | Read/Write | Gets the inner message. |
Methods
| Signature | Description |
|---|---|
new(message: impl Into<String>) → Self | Initializes a new instance. |
with_inner(message: impl Into<String>, inner_message: impl Into<String>) → Self | Initializes a new instance with a primary and inner message. |
fmt(f: &mut Formatter<'_>) → std::fmt::Result | Calls fmt(f) on this CellsException instance. |
from(value: CellsError) → Self | Calls from(value) on this CellsException instance. |