pub struct WorkspaceCreated {
pub todo_index: i64,
pub todo_content: String,
pub repo_path: String,
pub workspace_path: String,
pub branch: String,
}Expand description
A TODO workspace created during sync.
Fields§
§todo_index: i64§todo_content: String§repo_path: String§workspace_path: String§branch: StringTrait Implementations§
Source§impl Clone for WorkspaceCreated
impl Clone for WorkspaceCreated
Source§fn clone(&self) -> WorkspaceCreated
fn clone(&self) -> WorkspaceCreated
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 WorkspaceCreated
impl Debug for WorkspaceCreated
impl Eq for WorkspaceCreated
Source§impl PartialEq for WorkspaceCreated
impl PartialEq for WorkspaceCreated
Source§fn eq(&self, other: &WorkspaceCreated) -> bool
fn eq(&self, other: &WorkspaceCreated) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WorkspaceCreated
Auto Trait Implementations§
impl Freeze for WorkspaceCreated
impl RefUnwindSafe for WorkspaceCreated
impl Send for WorkspaceCreated
impl Sync for WorkspaceCreated
impl Unpin for WorkspaceCreated
impl UnsafeUnpin for WorkspaceCreated
impl UnwindSafe for WorkspaceCreated
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