pub enum BatchOperation {
CreateNote {
path: String,
content: String,
},
WriteNote {
path: String,
content: String,
},
DeleteNote {
path: String,
},
MoveNote {
from: String,
to: String,
},
UpdateLinks {
file: String,
old_target: String,
new_target: String,
},
}Expand description
Individual batch operation to execute
Variants§
CreateNote
Create a new note with content
WriteNote
Write/overwrite a note
DeleteNote
Delete a note
MoveNote
Move/rename a note
UpdateLinks
Update links in a note (find and replace link target)
Implementations§
Source§impl BatchOperation
impl BatchOperation
Sourcepub fn affected_files(&self) -> Vec<String>
pub fn affected_files(&self) -> Vec<String>
Get list of files affected by this operation
Sourcepub fn conflicts_with(&self, other: &BatchOperation) -> bool
pub fn conflicts_with(&self, other: &BatchOperation) -> bool
Check for conflicts with another operation
Trait Implementations§
Source§impl Clone for BatchOperation
impl Clone for BatchOperation
Source§fn clone(&self) -> BatchOperation
fn clone(&self) -> BatchOperation
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 BatchOperation
impl Debug for BatchOperation
Source§impl<'de> Deserialize<'de> for BatchOperation
impl<'de> Deserialize<'de> for BatchOperation
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 BatchOperation
impl RefUnwindSafe for BatchOperation
impl Send for BatchOperation
impl Sync for BatchOperation
impl Unpin for BatchOperation
impl UnwindSafe for BatchOperation
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