Struct tokio_tar::UstarHeader

source ·
#[repr(C)]
pub struct UstarHeader {
Show 17 fields pub name: [u8; 100], pub mode: [u8; 8], pub uid: [u8; 8], pub gid: [u8; 8], pub size: [u8; 12], pub mtime: [u8; 12], pub cksum: [u8; 8], pub typeflag: [u8; 1], pub linkname: [u8; 100], pub magic: [u8; 6], pub version: [u8; 2], pub uname: [u8; 32], pub gname: [u8; 32], pub dev_major: [u8; 8], pub dev_minor: [u8; 8], pub prefix: [u8; 155], pub pad: [u8; 12],
}
Expand description

Representation of the header of an entry in an archive

Fields§

§name: [u8; 100]§mode: [u8; 8]§uid: [u8; 8]§gid: [u8; 8]§size: [u8; 12]§mtime: [u8; 12]§cksum: [u8; 8]§typeflag: [u8; 1]§linkname: [u8; 100]§magic: [u8; 6]§version: [u8; 2]§uname: [u8; 32]§gname: [u8; 32]§dev_major: [u8; 8]§dev_minor: [u8; 8]§prefix: [u8; 155]§pad: [u8; 12]

Implementations§

source§

impl UstarHeader

source

pub fn path_bytes(&self) -> Cow<'_, [u8]>

See Header::path_bytes

source

pub fn set_path<P: AsRef<Path>>(&mut self, p: P) -> Result<()>

See Header::set_path

source

pub fn username_bytes(&self) -> &[u8]

See Header::username_bytes

source

pub fn set_username(&mut self, name: &str) -> Result<()>

See Header::set_username

source

pub fn groupname_bytes(&self) -> &[u8]

See Header::groupname_bytes

source

pub fn set_groupname(&mut self, name: &str) -> Result<()>

See Header::set_groupname

source

pub fn device_major(&self) -> Result<u32>

See Header::device_major

source

pub fn set_device_major(&mut self, major: u32)

See Header::set_device_major

source

pub fn device_minor(&self) -> Result<u32>

See Header::device_minor

source

pub fn set_device_minor(&mut self, minor: u32)

See Header::set_device_minor

source

pub fn as_header(&self) -> &Header

Views this as a normal Header

source

pub fn as_header_mut(&mut self) -> &mut Header

Views this as a normal Header

Trait Implementations§

source§

impl Debug for UstarHeader

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.