mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Massively reorganize and clean up the whole Rust codebase * Additional changes during code review
13 lines
219 B
Rust
13 lines
219 B
Rust
use super::LayerId;
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
pub enum DocumentError {
|
|
LayerNotFound(Vec<LayerId>),
|
|
InvalidPath,
|
|
IndexOutOfBounds,
|
|
NotAFolder,
|
|
NonReorderableSelection,
|
|
NotAShape,
|
|
InvalidFile(String),
|
|
}
|