[][src]Enum libzettels::Error

pub enum Error {
    BadLink(PathBufPathBufError),
    BadHeader(PathBufError),
    IgnoreFile(Error),
    Io(Error),
    NormalizePath(StripPrefixError),
    Yaml(Error),
}

All possible errors that can occur when constructing the index and parsing zettel files.

Variants

This error variant occurs when a link from a zettel file points to a file that doesn't exist. This is true for both "followups" specified in the zettel's YAML-metadata and "links" (inline markdown links). A BadLink contains the following information:

  • the "source": path to the Zettel file containing the link
  • the erroneous link (as an absolute, albeit non-existent path)
  • the underlying std::io::Error of the NotFound-kind.
BadHeader(PathBufError)

This error occurs when deserializing of a zettel file fails because of an erroneous yaml header. A BadHeader contains the following information:

  • the path to the Zettel file containing the erronous YAML header
  • the unterlying serde_yaml::Error.
IgnoreFile(Error)

This error occurs when something went wrong with applying the ignore file. It contains the underlying gitignore::Error. See documentation there for details.

Io(Error)

This error occurs for diverse kinds of IO error, like missing files, wrong permissions etc. It contains the underlying std::io::Error. See documentation there for details.

NormalizePath(StripPrefixError)

This error occurs when an attempt to express a path to a file relative to the root directory of the Zettelkasten failed. It contains the underlying std::path::StripPrefixError. See documentation there for details.

Yaml(Error)

This error occurs when serializing or deserializing Index or Config to or from YAML fails. Also when serializeing a Zettel fails. serde_yaml::Error. See documentation there for details.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<Error> for Error[src]

fn from(err: Error) -> Error[src]

impl From<Error> for Error[src]

fn from(err: Error) -> Error[src]

Converts a std::io::Error into a libzettels::Error.

impl From<Error> for Error[src]

impl From<StripPrefixError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.