pub struct UpdateNoteOptions {
pub content: Option<String>,
pub read_permission: Option<NotePermissionRole>,
pub write_permission: Option<NotePermissionRole>,
pub permalink: Option<String>,
}
Fields§
§content: Option<String>
§read_permission: Option<NotePermissionRole>
§write_permission: Option<NotePermissionRole>
§permalink: Option<String>
Trait Implementations§
Source§impl Clone for UpdateNoteOptions
impl Clone for UpdateNoteOptions
Source§fn clone(&self) -> UpdateNoteOptions
fn clone(&self) -> UpdateNoteOptions
Returns a copy 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 UpdateNoteOptions
impl Debug for UpdateNoteOptions
Source§impl PartialEq for UpdateNoteOptions
impl PartialEq for UpdateNoteOptions
Source§impl Serialize for UpdateNoteOptions
impl Serialize for UpdateNoteOptions
impl Eq for UpdateNoteOptions
impl StructuralPartialEq for UpdateNoteOptions
Auto Trait Implementations§
impl Freeze for UpdateNoteOptions
impl RefUnwindSafe for UpdateNoteOptions
impl Send for UpdateNoteOptions
impl Sync for UpdateNoteOptions
impl Unpin for UpdateNoteOptions
impl UnwindSafe for UpdateNoteOptions
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