Trait structsy::RawRead

source ·
pub trait RawRead {
    // Required methods
    fn raw_scan(&self, ty_name: &str) -> SRes<RawIter>;
    fn raw_read(&self, id: &str) -> SRes<Option<Record>>;
}

Required Methods§

source

fn raw_scan(&self, ty_name: &str) -> SRes<RawIter>

Scan the records of a struct or enum in a raw format

source

fn raw_read(&self, id: &str) -> SRes<Option<Record>>

read a single record in a raw formant from a string id

Implementors§