[][src]Struct rusty_ci::MasterConfig

pub struct MasterConfig { /* fields omitted */ }

This struct represents the configuration file for the master. This file contains the Python code for the builders and the schedulers. In addition, it contains some basic data such as the title for the web ui, the title url for the webui, and so on.

For more information on how the master configuration file works, see the documentation for buildbot on their website: https://buildbot.net/

Methods

impl MasterConfig[src]

This is impl the for MasterConfig struct.

pub fn set_mail_notifier(&mut self, mail_notifier: MailNotifier)[src]

Trait Implementations

impl From<Yaml> for MasterConfig[src]

This impl converts a Yaml file into a MasterConfig object. This is intended to take the entire input yaml file.

impl Display for MasterConfig[src]

Converts a MasterConfig instance into the Python master configuration file for buildbot

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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 = 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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