pub struct UpdateRootDto {
pub id: EntityId,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: EntityId§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for UpdateRootDto
impl Clone for UpdateRootDto
Source§fn clone(&self) -> UpdateRootDto
fn clone(&self) -> UpdateRootDto
Returns a duplicate 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 UpdateRootDto
impl Debug for UpdateRootDto
Source§impl Default for UpdateRootDto
impl Default for UpdateRootDto
Source§fn default() -> UpdateRootDto
fn default() -> UpdateRootDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateRootDto
impl<'de> Deserialize<'de> for UpdateRootDto
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
Source§impl From<&UpdateRootDto> for Root
impl From<&UpdateRootDto> for Root
Source§fn from(dto: &UpdateRootDto) -> Self
fn from(dto: &UpdateRootDto) -> Self
Converts to this type from the input type.
Source§impl From<Root> for UpdateRootDto
impl From<Root> for UpdateRootDto
Source§impl From<RootDto> for UpdateRootDto
impl From<RootDto> for UpdateRootDto
Source§impl From<UpdateRootDto> for Root
impl From<UpdateRootDto> for Root
Source§fn from(dto: UpdateRootDto) -> Self
fn from(dto: UpdateRootDto) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UpdateRootDto
impl PartialEq for UpdateRootDto
Source§impl Serialize for UpdateRootDto
impl Serialize for UpdateRootDto
impl StructuralPartialEq for UpdateRootDto
Auto Trait Implementations§
impl Freeze for UpdateRootDto
impl RefUnwindSafe for UpdateRootDto
impl Send for UpdateRootDto
impl Sync for UpdateRootDto
impl Unpin for UpdateRootDto
impl UnsafeUnpin for UpdateRootDto
impl UnwindSafe for UpdateRootDto
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