Enum mdcat::ResourceAccess[][src]

pub enum ResourceAccess {
    LocalOnly,
    RemoteAllowed,
}

What kind of resources mdcat may access when rendering.

This struct denotes whether mdcat shows inline images from remote URLs or just from local files.

Variants

Use only local files and prohibit remote resources.

Use local and remote resources alike.

Trait Implementations

impl Debug for ResourceAccess
[src]

Formats the value using the given formatter. Read more

impl Copy for ResourceAccess
[src]

impl Clone for ResourceAccess
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations