pub struct MasterConfig { /* private fields */ }Expand description
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/
Implementations§
Source§impl MasterConfig
This is impl the for MasterConfig struct.
impl MasterConfig
This is impl the for MasterConfig struct.
pub fn set_mail_notifier(&mut self, mail_notifier: MailNotifier)
pub fn get_workers(&self) -> Vec<Worker>
Trait Implementations§
Source§impl Display for MasterConfig
Converts a MasterConfig instance into the Python master configuration file for buildbot
impl Display for MasterConfig
Converts a MasterConfig instance into the Python master configuration file for buildbot
Auto Trait Implementations§
impl Freeze for MasterConfig
impl RefUnwindSafe for MasterConfig
impl Send for MasterConfig
impl Sync for MasterConfig
impl Unpin for MasterConfig
impl UnwindSafe for MasterConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more