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