pub enum PaxString {
Utf8(Arc<str>),
Binary(Arc<[u8]>),
}Expand description
A character value governed by the effective PAX HdrCharset.
Variants§
Utf8(Arc<str>)
A value declared or defaulted to UTF-8.
Binary(Arc<[u8]>)
A value declared as unencoded binary bytes.
Trait Implementations§
impl Eq for PaxString
impl StructuralPartialEq for PaxString
Auto Trait Implementations§
impl Freeze for PaxString
impl RefUnwindSafe for PaxString
impl Send for PaxString
impl Sync for PaxString
impl Unpin for PaxString
impl UnsafeUnpin for PaxString
impl UnwindSafe for PaxString
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