Struct tar::PaxExtension
source · pub struct PaxExtension<'entry> { /* private fields */ }
Expand description
A key/value pair corresponding to a pax extension.
Implementations§
source§impl<'entry> PaxExtension<'entry>
impl<'entry> PaxExtension<'entry>
sourcepub fn key(&self) -> Result<&'entry str, Utf8Error>
pub fn key(&self) -> Result<&'entry str, Utf8Error>
Returns the key for this key/value pair parsed as a string.
May fail if the key isn’t actually utf-8.
sourcepub fn key_bytes(&self) -> &'entry [u8] ⓘ
pub fn key_bytes(&self) -> &'entry [u8] ⓘ
Returns the underlying raw bytes for the key of this key/value pair.
sourcepub fn value(&self) -> Result<&'entry str, Utf8Error>
pub fn value(&self) -> Result<&'entry str, Utf8Error>
Returns the value for this key/value pair parsed as a string.
May fail if the value isn’t actually utf-8.
sourcepub fn value_bytes(&self) -> &'entry [u8] ⓘ
pub fn value_bytes(&self) -> &'entry [u8] ⓘ
Returns the underlying raw bytes for this value of this key/value pair.