Struct ipc_chan::Config[][src]

pub struct Config {
    pub host: String,
    pub port: usize,
}

Fields

host: Stringport: usize

Implementations

impl Config[src]

pub fn parse_toml<P: AsRef<Path>>(toml_path: P) -> Result<Self>[src]

Parse a TOML config file. If the file can’t be found, default settings are assumed and returned.

pub fn write_toml<P: AsRef<Path>>(
    &self,
    toml_path: P,
    overwrite_policy: OverwritePolicy
) -> Result<()>
[src]

Write self to a TOML config file @ toml_path. If overwrite_policy is OverwritePolicy::Overwrite, the file will be written regardless of whether or not it previously existed. However, if overwrite_policy is OverwritePolicy::DontOverwrite, the file will only be written iff. it did not previously exist.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl<'de> Deserialize<'de> for Config[src]

impl Eq for Config[src]

impl Hash for Config[src]

impl Ord for Config[src]

impl PartialEq<Config> for Config[src]

impl PartialOrd<Config> for Config[src]

impl Serialize for Config[src]

impl StructuralEq for Config[src]

impl StructuralPartialEq 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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.