Struct tar::PaxExtension
source · [−]pub struct PaxExtension<'entry> { /* private fields */ }
Expand description
A key/value pair corresponding to a pax extension.
Implementations
sourceimpl<'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]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn key_bytes(&self) -> &'entry [u8]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Returns the underlying raw bytes for the key of this key/value pair.
Auto Trait Implementations
impl<'entry> RefUnwindSafe for PaxExtension<'entry>
impl<'entry> Send for PaxExtension<'entry>
impl<'entry> Sync for PaxExtension<'entry>
impl<'entry> Unpin for PaxExtension<'entry>
impl<'entry> UnwindSafe for PaxExtension<'entry>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more