pub struct CommitPushOutcome {
pub success: bool,
pub committed: bool,
pub pushed: bool,
pub commit: Option<String>,
}Expand description
Shaped POST /api/git/commit-push result: what the action actually did.
Fields§
§success: bool§committed: bool§pushed: bool§commit: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommitPushOutcome
impl RefUnwindSafe for CommitPushOutcome
impl Send for CommitPushOutcome
impl Sync for CommitPushOutcome
impl Unpin for CommitPushOutcome
impl UnsafeUnpin for CommitPushOutcome
impl UnwindSafe for CommitPushOutcome
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