WorkbookSaveException

WorkbookSaveException

Overview

WorkbookSaveException is a struct in Aspose.Cells FOSS for Rust. Inherits from: Debug, Default, Clone, and 4 more.

Represents an error that occurs during workbook save.

This struct provides 4 methods for working with WorkbookSaveException 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

NameTypeAccessDescription
messageStringRead/WriteGets the message.
inner_messageOption<String>Read/WriteGets the inner message.

Methods

SignatureDescription
new(message: impl Into<String>)SelfInitializes a new instance.
with_inner(message: impl Into<String>, inner_message: impl Into<String>)SelfInitializes a new instance with a primary and inner message.
fmt(f: &mut Formatter<'_>)std::fmt::ResultCalls fmt(f) on this WorkbookSaveException instance.
from(value: CellsError)SelfCalls from(value) on this WorkbookSaveException instance.

See Also