Struct tokio_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.
Auto Trait Implementations§
impl<'entry> Freeze for PaxExtension<'entry>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more