pub enum DoneResult {
Merged {
target_path: PathBuf,
},
PrCreated {
url: String,
target_path: PathBuf,
},
}Expand description
Result of a done operation.
Variants§
Auto Trait Implementations§
impl Freeze for DoneResult
impl RefUnwindSafe for DoneResult
impl Send for DoneResult
impl Sync for DoneResult
impl Unpin for DoneResult
impl UnsafeUnpin for DoneResult
impl UnwindSafe for DoneResult
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