pub struct AssetNote {
pub text: String,
pub user_id: Uuid,
pub user_name: String,
pub updated_at: String,
}Fields§
§text: StringNote content
user_id: UuidWho updated the note (UUID)
user_name: StringUser name
updated_at: StringISO Timestamp when last updated
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AssetNote
impl<'de> Deserialize<'de> for AssetNote
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 StructuralPartialEq for AssetNote
Auto Trait Implementations§
impl Freeze for AssetNote
impl RefUnwindSafe for AssetNote
impl Send for AssetNote
impl Sync for AssetNote
impl Unpin for AssetNote
impl UnwindSafe for AssetNote
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