pub struct NoteDto {
pub id: String,
pub moniker: String,
pub kind: String,
pub status: String,
pub title: String,
pub body: String,
pub created_by: String,
pub updated_at: String,
pub resolution: NoteResolutionDto,
}Fields§
§id: String§moniker: String§kind: String§status: String§title: String§body: String§created_by: String§updated_at: String§resolution: NoteResolutionDtoTrait Implementations§
Source§impl<'de> Deserialize<'de> for NoteDto
impl<'de> Deserialize<'de> for NoteDto
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
impl Eq for NoteDto
impl StructuralPartialEq for NoteDto
Auto Trait Implementations§
impl Freeze for NoteDto
impl RefUnwindSafe for NoteDto
impl Send for NoteDto
impl Sync for NoteDto
impl Unpin for NoteDto
impl UnsafeUnpin for NoteDto
impl UnwindSafe for NoteDto
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