[][src]Enum gophermap::ItemType

pub enum ItemType {
    File,
    Directory,
    CsoServer,
    Error,
    BinHex,
    DosBinary,
    Uuencoded,
    Search,
    Telnet,
    Binary,
    RedundantServer,
    Tn3270,
    Gif,
    Image,
    Info,
    Other(char),
}

Item type for a Gopher directory entry

Variants

File

Item is a file

Directory

Item is a directory

CsoServer

Item is a CSO phone-book server

Error

Error

BinHex

Item is a BinHexed Macintosh file.

DosBinary

Item is a DOS binary archive of some sort. Client must read until the TCP connection closes. Beware.

Uuencoded

Item is a UNIX uuencoded file.

Search

Item is an Index-Search server.

Telnet

Item points to a text-based telnet session.

Binary

Item is a binary file! Client must read until the TCP connection closes. Beware.

RedundantServer

Item is a redundant server

Tn3270

Item points to a text-based tn3270 session.

Gif

Item is a GIF format graphics file.

Image

Item is some sort of image file. Client decides how to display.

Info

Informational message

Other(char)

Other types

Methods

impl ItemType[src]

pub fn from(c: char) -> Self[src]

Parses a char into an Item Type

pub fn to_char(&self) -> char[src]

Turns an Item Type into a char

Trait Implementations

impl PartialEq<ItemType> for ItemType[src]

impl Debug for ItemType[src]

Auto Trait Implementations

impl Send for ItemType

impl Sync for ItemType

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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