1 2 3 4 5 6 7 8
use crate::NoteError; use globset::Error; impl From<Error> for NoteError { fn from(e: Error) -> Self { NoteError::runtime_error(e.to_string()) } }