[][src]Trait jagged::ReadArchive

pub trait ReadArchive {
    fn get<S>(&self, key: S) -> Option<&Vec<u8>>
    where
        S: Into<String>
;
fn get_mut<S>(&mut self, key: S) -> Option<&mut Vec<u8>>
    where
        S: Into<String>
; }

Required methods

fn get<S>(&self, key: S) -> Option<&Vec<u8>> where
    S: Into<String>, 

Gets a reference to an entry from an archive, if it exists.

fn get_mut<S>(&mut self, key: S) -> Option<&mut Vec<u8>> where
    S: Into<String>, 

Gets a mutable reference to an entry from an archive, if it exists.

Loading content...

Implementors

impl ReadArchive for Archive[src]

Loading content...