[][src]Struct wsdclient::types::DiagramError

pub struct DiagramError {
    pub description: String,
    pub line_number: i32,
    pub raw_description: String,
}

Represent an error during diagram creation

Example of raw errors from API:

"Line 1: Syntax error."

"Line 3: Deactivate: A was not activated."

Errors may be not fatal. So you may still obtain diagram and errors at the same time.

Fields

description: String

Parsed description

line_number: i32

Line number where the error occurred. Note: it may be incorrect due to bug in API if input starts from empty lines

raw_description: String

description returned from API

Methods

impl DiagramError[src]

Trait Implementations

impl Eq for DiagramError[src]

impl PartialEq<DiagramError> for DiagramError[src]

impl Clone for DiagramError[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DiagramError[src]

impl Serialize for DiagramError[src]

impl<'de> Deserialize<'de> for DiagramError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Any for T where
    T: 'static + ?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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto for T where
    U: TryFrom<T>, 

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