pub enum NotesResponse {
NoNotes,
SomeNotes(Vec<Value>),
SetNoteSuccess,
SetNoteLabelAlreadyExist,
GetNoteNotFound,
GetNoteFound(String),
RemoveSucess,
RemoveNoteDoesntExist,
InvalidCommand,
CommandError,
}Variants§
NoNotes
SomeNotes(Vec<Value>)
SetNoteSuccess
SetNoteLabelAlreadyExist
GetNoteNotFound
GetNoteFound(String)
RemoveSucess
RemoveNoteDoesntExist
InvalidCommand
CommandError
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NotesResponse
impl RefUnwindSafe for NotesResponse
impl Send for NotesResponse
impl Sync for NotesResponse
impl Unpin for NotesResponse
impl UnwindSafe for NotesResponse
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