[][src]Enum wix::Error

pub enum Error {
    Command(&'static stri32),
    Generic(String),
    Io(Error),
    Manifest(&'static str),
    Mustache(Error),
    Toml(Error),
    Version(SemVerError),
}

The error type for wix-related operations and associated traits.

Errors mostly originate from the dependencies, but custom instances of Error can be created with the Generic variant and a message.

Variants

Command(&'static stri32)

A command operation failed.

Generic(String)

A generic or custom error occurred. The message should contain the detailed information.

Io(Error)

An I/O operation failed.

Manifest(&'static str)

A needed field within the Cargo.toml manifest could not be found.

Mustache(Error)

An error occurred with rendering the template using the mustache renderer.

Toml(Error)

Parsing of the Cargo.toml manifest failed.

Version(SemVerError)

Parsing error for a version string or field.

Methods

impl Error[src]

pub fn code(&self) -> i32[src]

Gets an error code related to the error.

Examples

extern crate wix;

use wix::Error;

fn main() {
    let err = Error::from("A generic error");
    assert!(err.code() != 0)
}

This is useful as a return, or exit, code for a command line application, where a non-zero integer indicates a failure in the application. it can also be used for quickly and easily testing equality between two errors.

pub fn already_exists(p: &Path) -> Self[src]

Creates a new Error from a std::io::Error with the std::io::ErrorKind::AlreadyExists variant.

Examples

extern crate wix;

use std::io;
use std::path::Path;
use wix::Error;

fn main() {
    let path = Path::new("C:\\");
    let expected = Error::Io(io::Error::new(
        io::ErrorKind::AlreadyExists,
        path.display().to_string()
    ));
    assert_eq!(expected, Error::already_exists(path));
}

pub fn not_found(p: &Path) -> Self[src]

Creates a new Error from a std::io::Error with the std::io::ErrorKind::NotFound variant.

Examples

extern crate wix;

use std::io;
use std::path::Path;
use wix::Error;

fn main() {
    let path = Path::new("C:\\Cargo\\Wix\\file.txt");
    let expected = Error::Io(io::Error::new(
        io::ErrorKind::NotFound,
        path.display().to_string()
    ));
    assert_eq!(expected, Error::not_found(path));
}

Trait Implementations

impl PartialEq<Error> for Error[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<'a> From<&'a str> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<SemVerError> for Error[src]

impl From<StripPrefixError> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

impl Error for Error[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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