pub struct NoteCreated {
pub path: PathBuf,
pub rel_path: PathBuf,
pub node_id: String,
}Expand description
Result of creating a note on disk.
Fields§
§path: PathBufAbsolute path written.
rel_path: PathBufRelative path from workspace.
node_id: StringStable node id after next sync.
Trait Implementations§
Source§impl Clone for NoteCreated
impl Clone for NoteCreated
Source§fn clone(&self) -> NoteCreated
fn clone(&self) -> NoteCreated
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 moreAuto Trait Implementations§
impl Freeze for NoteCreated
impl RefUnwindSafe for NoteCreated
impl Send for NoteCreated
impl Sync for NoteCreated
impl Unpin for NoteCreated
impl UnsafeUnpin for NoteCreated
impl UnwindSafe for NoteCreated
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