[][src]Enum rc_zip::HostSystem

pub enum HostSystem {
    MsDos,
    Amiga,
    OpenVms,
    Unix,
    VmCms,
    AtariSt,
    Os2Hpfs,
    Macintosh,
    ZSystem,
    CpM,
    WindowsNtfs,
    Mvs,
    Vse,
    AcornRisc,
    Vfat,
    AlternateMvs,
    BeOs,
    Tandem,
    Os400,
    Osx,
    Unknown(u8),
}

System on which an archive was created, as encoded into a version u16.

See APPNOTE, section 4.4.2.2

Variants

MsDos

MS-DOS and OS/2 (FAT / VFAT / FAT32 file systems)

Amiga

Amiga

OpenVms

OpenVMS

Unix

UNIX

VmCms

VM/CMS

AtariSt

Atari ST

Os2Hpfs

OS/2 H.P.F.S

Macintosh

Macintosh (see Osx)

ZSystem

Z-System

CpM

CP/M

WindowsNtfs

Windows NTFS

Mvs

MVS (OS/390 - Z/OS)

Vse

VSE

AcornRisc

Acorn Risc

Vfat

VFAT

AlternateMvs

alternate MVS

BeOs

BeOS

Tandem

Tandem

Os400

OS/400

Osx

OS X (Darwin)

Unknown(u8)

Unknown host system

Values 20 through 255 are currently unused, as of APPNOTE.TXT 6.3.6 (April 26, 2019)

Trait Implementations

impl Debug for HostSystem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.