pub struct UpdateNoteRequest {
pub content: Option<String>,
pub importance: Option<f64>,
pub metadata: Option<Value>,
}Expand description
Update an existing note.
Fields§
§content: Option<String>§importance: Option<f64>§metadata: Option<Value>Trait Implementations§
Source§impl Clone for UpdateNoteRequest
impl Clone for UpdateNoteRequest
Source§fn clone(&self) -> UpdateNoteRequest
fn clone(&self) -> UpdateNoteRequest
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 UpdateNoteRequest
impl Debug for UpdateNoteRequest
Auto Trait Implementations§
impl Freeze for UpdateNoteRequest
impl RefUnwindSafe for UpdateNoteRequest
impl Send for UpdateNoteRequest
impl Sync for UpdateNoteRequest
impl Unpin for UpdateNoteRequest
impl UnwindSafe for UpdateNoteRequest
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