Trait tycho::partial::container::PartialContainerType[][src]

pub trait PartialContainerType {
    type ItemType;
    type ItemParam;
    fn read_item<R: Read + Seek>(
        reader: &mut PartialReader<R>,
        param: &Self::ItemParam
    ) -> TychoResult<Self::ItemType>; }

Associated Types

Loading content...

Required methods

fn read_item<R: Read + Seek>(
    reader: &mut PartialReader<R>,
    param: &Self::ItemParam
) -> TychoResult<Self::ItemType>
[src]

Loading content...

Implementors

impl PartialContainerType for PartialArrayInner[src]

type ItemType = Value

type ItemParam = ValueIdent

impl PartialContainerType for PartialListInner[src]

type ItemType = PartialElement

type ItemParam = ()

impl PartialContainerType for PartialMapInner[src]

type ItemType = (Value, PartialElement)

type ItemParam = ValueIdent

impl PartialContainerType for PartialStructInner[src]

type ItemType = (String, PartialElement)

type ItemParam = ()

Loading content...