pub struct CompletionLanding {
pub committed: bool,
pub commit_sha: Option<String>,
pub handoff_path: String,
pub open_task_count: usize,
}Expand description
Landing details included in completion actions.
Fields§
§committed: boolWhether changes were auto-committed.
commit_sha: Option<String>The commit SHA if a commit was made.
handoff_path: StringPath to the handoff file.
open_task_count: usizeNumber of open tasks remaining.
Trait Implementations§
Source§impl Clone for CompletionLanding
impl Clone for CompletionLanding
Source§fn clone(&self) -> CompletionLanding
fn clone(&self) -> CompletionLanding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompletionLanding
impl Debug for CompletionLanding
Source§impl From<&LandingResult> for CompletionLanding
impl From<&LandingResult> for CompletionLanding
Source§fn from(result: &LandingResult) -> Self
fn from(result: &LandingResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CompletionLanding
impl PartialEq for CompletionLanding
impl Eq for CompletionLanding
impl StructuralPartialEq for CompletionLanding
Auto Trait Implementations§
impl Freeze for CompletionLanding
impl RefUnwindSafe for CompletionLanding
impl Send for CompletionLanding
impl Sync for CompletionLanding
impl Unpin for CompletionLanding
impl UnsafeUnpin for CompletionLanding
impl UnwindSafe for CompletionLanding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.