pub struct CreateNoteParams {
pub title: String,
pub parentnoteid: Option<String>,
pub markdown: Option<String>,
pub html: Option<String>,
}Expand description
Parameters for SliteClient::create_note.
Fields§
§title: String§parentnoteid: Option<String>§markdown: Option<String>§html: Option<String>Trait Implementations§
Source§impl Clone for CreateNoteParams
impl Clone for CreateNoteParams
Source§fn clone(&self) -> CreateNoteParams
fn clone(&self) -> CreateNoteParams
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 CreateNoteParams
impl Debug for CreateNoteParams
Source§impl<'de> Deserialize<'de> for CreateNoteParams
impl<'de> Deserialize<'de> for CreateNoteParams
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 CreateNoteParams
impl RefUnwindSafe for CreateNoteParams
impl Send for CreateNoteParams
impl Sync for CreateNoteParams
impl Unpin for CreateNoteParams
impl UnsafeUnpin for CreateNoteParams
impl UnwindSafe for CreateNoteParams
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