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