pub enum WorkspacePatchOperation {
Create {
path: String,
content: String,
},
Delete {
path: String,
},
Update {
path: String,
move_to: Option<String>,
changes: Vec<WorkspaceTextReplacement>,
},
}Variants§
Trait Implementations§
Source§impl Clone for WorkspacePatchOperation
impl Clone for WorkspacePatchOperation
Source§fn clone(&self) -> WorkspacePatchOperation
fn clone(&self) -> WorkspacePatchOperation
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 WorkspacePatchOperation
impl Debug for WorkspacePatchOperation
Source§impl<'de> Deserialize<'de> for WorkspacePatchOperation
impl<'de> Deserialize<'de> for WorkspacePatchOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WorkspacePatchOperation
impl RefUnwindSafe for WorkspacePatchOperation
impl Send for WorkspacePatchOperation
impl Sync for WorkspacePatchOperation
impl Unpin for WorkspacePatchOperation
impl UnsafeUnpin for WorkspacePatchOperation
impl UnwindSafe for WorkspacePatchOperation
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