pub struct CompleteTodoOutcome {
pub task_index: i64,
pub merged_bookmark: Option<String>,
}Expand description
Result of completing a TODO, including optional workspace bookmark name.
Fields§
§task_index: i64§merged_bookmark: Option<String>Trait Implementations§
Source§impl Clone for CompleteTodoOutcome
impl Clone for CompleteTodoOutcome
Source§fn clone(&self) -> CompleteTodoOutcome
fn clone(&self) -> CompleteTodoOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompleteTodoOutcome
impl Debug for CompleteTodoOutcome
impl Eq for CompleteTodoOutcome
Source§impl PartialEq for CompleteTodoOutcome
impl PartialEq for CompleteTodoOutcome
Source§fn eq(&self, other: &CompleteTodoOutcome) -> bool
fn eq(&self, other: &CompleteTodoOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompleteTodoOutcome
Auto Trait Implementations§
impl Freeze for CompleteTodoOutcome
impl RefUnwindSafe for CompleteTodoOutcome
impl Send for CompleteTodoOutcome
impl Sync for CompleteTodoOutcome
impl Unpin for CompleteTodoOutcome
impl UnsafeUnpin for CompleteTodoOutcome
impl UnwindSafe for CompleteTodoOutcome
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