Struct PaxExtension
pub struct PaxExtension<'entry> { /* private fields */ }
A key/value pair corresponding to a pax extension.
Implementations
impl<'entry> PaxExtension<'entry>
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.
fn key_bytes(&self) -> &'entry [u8]Returns the underlying raw bytes for the key of this key/value pair.
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.
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> UnsafeUnpin for PaxExtension<'entry>
impl<'entry> UnwindSafe for PaxExtension<'entry>
Blanket Implementations
impl<T> Any for PaxExtension<'entry>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for PaxExtension<'entry>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for PaxExtension<'entry>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for PaxExtension<'entry>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for PaxExtension<'entry>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for PaxExtension<'entry>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for PaxExtension<'entry>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>