pub struct ApplySuccess {
pub commit: Option<String>,
pub pr_url: Option<String>,
}Expand description
Returned on a successful apply.
Fields§
§commit: Option<String>merge mode: the commit SHA that was merged.
pr_url: Option<String>pr mode: the URL of the created PR.
Trait Implementations§
Source§impl Debug for ApplySuccess
impl Debug for ApplySuccess
Auto Trait Implementations§
impl Freeze for ApplySuccess
impl RefUnwindSafe for ApplySuccess
impl Send for ApplySuccess
impl Sync for ApplySuccess
impl Unpin for ApplySuccess
impl UnsafeUnpin for ApplySuccess
impl UnwindSafe for ApplySuccess
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