pub struct UpdateNoteParams {
pub noteid: String,
pub title: Option<String>,
pub markdown: Option<String>,
pub html: Option<String>,
}Expand description
Parameters for SliteClient::update_note.
Fields§
§noteid: String§title: Option<String>§markdown: Option<String>§html: Option<String>Trait Implementations§
Source§impl Clone for UpdateNoteParams
impl Clone for UpdateNoteParams
Source§fn clone(&self) -> UpdateNoteParams
fn clone(&self) -> UpdateNoteParams
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 UpdateNoteParams
impl Debug for UpdateNoteParams
Source§impl<'de> Deserialize<'de> for UpdateNoteParams
impl<'de> Deserialize<'de> for UpdateNoteParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateNoteParams
impl RefUnwindSafe for UpdateNoteParams
impl Send for UpdateNoteParams
impl Sync for UpdateNoteParams
impl Unpin for UpdateNoteParams
impl UnsafeUnpin for UpdateNoteParams
impl UnwindSafe for UpdateNoteParams
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