[][src]Struct pmd_flow::FlowDataOutput

pub struct FlowDataOutput { /* fields omitted */ }

A FlowData representation that can serialized and deserialized, and is easily modifable by human.

Implementations

impl FlowDataOutput[src]

pub fn new(source: FlowData) -> FlowDataOutput[src]

Create a new FlowDataOutput from a FlowData

Panics

This function will panic if anything in the FlowData is invalid

pub fn generate_flowdata(&self) -> FlowData[src]

Create a new FlowData from this struct

Panics

This function will panic if the input file is invalid

Trait Implementations

impl Debug for FlowDataOutput[src]

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

impl Serialize for FlowDataOutput[src]

Auto Trait Implementations

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.