pub struct NoteFile {
pub filename: String,
pub file_uuid: String,
}Expand description
A file attachment belonging to a Bear note.
Fields§
§filename: StringOriginal filename as stored in Bear (e.g. image.png)
file_uuid: StringBear’s internal UUID for the file — used as the subdirectory name under
Application Data/Local Files/Note Images/
Trait Implementations§
impl Eq for NoteFile
impl StructuralPartialEq for NoteFile
Auto Trait Implementations§
impl Freeze for NoteFile
impl RefUnwindSafe for NoteFile
impl Send for NoteFile
impl Sync for NoteFile
impl Unpin for NoteFile
impl UnsafeUnpin for NoteFile
impl UnwindSafe for NoteFile
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