pub struct MergeRequestHandler { /* private fields */ }Expand description
The purpose of a continuous integration tool is to continuously confirm the validity and robustness of code. It follows then that you must check code BEFORE it is deployed. To do this, you must take the code that someone wants to merge into the repository, and test what the merged code would look like. This struct allows us to add this functionality to the output buildbot project.
Implementations§
Trait Implementations§
Source§impl Display for MergeRequestHandler
This trait implementation tells rust how to convert a MergeRequestHandler object
into the output python.
impl Display for MergeRequestHandler
This trait implementation tells rust how to convert a MergeRequestHandler object into the output python.
Auto Trait Implementations§
impl Freeze for MergeRequestHandler
impl RefUnwindSafe for MergeRequestHandler
impl Send for MergeRequestHandler
impl Sync for MergeRequestHandler
impl Unpin for MergeRequestHandler
impl UnwindSafe for MergeRequestHandler
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