[][src]Struct vimwiki_server::Config

pub struct Config {
    pub verbose: u8,
    pub wikis: Vec<WikiConfig>,
    pub mode: Mode,
    pub host: String,
    pub port: u16,
    pub exts: Vec<String>,
    pub cache_dir: PathBuf,
}

Fields

verbose: u8

Verbose mode (-v, -vv, -vvv, etc.)

wikis: Vec<WikiConfig>

Wiki paths to load, monitor, and manipulate Format is index[:name]:path

mode: Mode

Mode to run server (http = web; stdin = read input from stdin and reply on stdout)

host: String

Host/IP address of server in http mode

port: u16

Port of the server in http mode

exts: Vec<String>

Extensions for wiki files to parse

cache_dir: PathBuf

Directory where cache information for use with server will be stored

Implementations

impl Config[src]

pub fn load() -> Self[src]

Loads the configuration for the server

pub fn log_level(&self) -> LevelFilter[src]

The level to use for logging throughout the server

Trait Implementations

impl Clap for Config[src]

impl Debug for Config[src]

impl FromArgMatches for Config[src]

impl IntoApp for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,