pub struct NoteRequest {
pub id: Option<Uuid>,
pub user_id: Option<Uuid>,
pub subgroup: Option<Uuid>,
pub title: Option<String>,
pub img: Option<String>,
pub comment: Option<String>,
pub content: Option<Value>,
}
Fields§
§id: Option<Uuid>
§user_id: Option<Uuid>
§subgroup: Option<Uuid>
§title: Option<String>
§img: Option<String>
§comment: Option<String>
§content: Option<Value>
Trait Implementations§
Source§impl Clone for NoteRequest
impl Clone for NoteRequest
Source§fn clone(&self) -> NoteRequest
fn clone(&self) -> NoteRequest
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 NoteRequest
impl Debug for NoteRequest
Source§impl<'de> Deserialize<'de> for NoteRequest
impl<'de> Deserialize<'de> for NoteRequest
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 NoteRequest
impl RefUnwindSafe for NoteRequest
impl Send for NoteRequest
impl Sync for NoteRequest
impl Unpin for NoteRequest
impl UnwindSafe for NoteRequest
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