Struct tar::PaxExtension [] [src]

pub struct PaxExtension<'entry> {
    // some fields omitted
}

A key/value pair corresponding to a pax extension.

Methods

impl<'entry> PaxExtension<'entry>
[src]

fn key(&self) -> Result<&strUtf8Error>

Returns the key for this key/value pair parsed as a string.

May fail if the key isn't actually utf-8.

fn key_bytes(&self) -> &[u8]

Returns the underlying raw bytes for the key of this key/value pair.

fn value(&self) -> Result<&strUtf8Error>

Returns the value for this key/value pair parsed as a string.

May fail if the value isn't actually utf-8.

fn value_bytes(&self) -> &[u8]

Returns the underlying raw bytes for this value of this key/value pair.