[][src]Struct pmd_flow::FlowData

pub struct FlowData {
    pub unknown1: u32,
    pub unknown2: u16,
    // some fields omitted
}

Fields

unknown1: u32unknown2: u16

Implementations

impl FlowData[src]

pub fn push_dictionary(
    &mut self,
    values: HashMap<String, FlowDataValue>
) -> Result<u16, FlowDataError>
[src]

pub fn push_vector(
    &mut self,
    values: Vec<FlowDataValue>
) -> Result<u16, FlowDataError>
[src]

pub fn dictionary_len(&self) -> usize[src]

pub fn vector_len(&self) -> usize[src]

pub fn get_dictionary(
    &self,
    dicid: usize
) -> Option<&HashMap<String, FlowDataValue>>
[src]

pub fn get_dictionary_mut(
    &mut self,
    dicid: usize
) -> Option<&mut HashMap<String, FlowDataValue>>
[src]

pub fn get_vector(&self, vecid: usize) -> Option<&Vec<FlowDataValue>>[src]

pub fn get_vector_mut(
    &mut self,
    vecid: usize
) -> Option<&mut Vec<FlowDataValue>>
[src]

impl FlowData[src]

pub fn new<T: Read + Seek>(file: &mut T) -> Result<FlowData, FlowDataError>[src]

pub fn write<T: Write + Seek>(&self, file: &mut T) -> Result<(), FlowDataError>[src]

Trait Implementations

impl Debug for FlowData[src]

impl Default for FlowData[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> 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.