pub struct Dto {
pub id: EntityId,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub name: String,
pub fields: Vec<EntityId>,
}Fields§
§id: EntityId§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§name: String§fields: Vec<EntityId>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dto
impl<'de> Deserialize<'de> for Dto
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 Dto
impl StructuralPartialEq for Dto
Auto Trait Implementations§
impl Freeze for Dto
impl RefUnwindSafe for Dto
impl Send for Dto
impl Sync for Dto
impl Unpin for Dto
impl UnsafeUnpin for Dto
impl UnwindSafe for Dto
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