pub type EditorResult<T> = Result<T, EditorError>;Expand description
Core buffer, syntax, movement, and hook primitives. Specialized Result type for editor operations.
Aliased Type§
pub enum EditorResult<T> {
Ok(T),
Err(EditorError),
}pub type EditorResult<T> = Result<T, EditorError>;Core buffer, syntax, movement, and hook primitives. Specialized Result type for editor operations.
pub enum EditorResult<T> {
Ok(T),
Err(EditorError),
}