pub struct UpdateUserInterfaceDto {
pub id: EntityId,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub rust_cli: bool,
pub rust_slint: bool,
pub cpp_qt_qtwidgets: bool,
pub cpp_qt_qtquick: bool,
pub rust_ios: bool,
pub rust_android: bool,
}Fields§
§id: EntityId§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§rust_cli: bool§rust_slint: bool§cpp_qt_qtwidgets: bool§cpp_qt_qtquick: bool§rust_ios: bool§rust_android: boolTrait Implementations§
Source§impl Clone for UpdateUserInterfaceDto
impl Clone for UpdateUserInterfaceDto
Source§fn clone(&self) -> UpdateUserInterfaceDto
fn clone(&self) -> UpdateUserInterfaceDto
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateUserInterfaceDto
impl Debug for UpdateUserInterfaceDto
Source§impl Default for UpdateUserInterfaceDto
impl Default for UpdateUserInterfaceDto
Source§fn default() -> UpdateUserInterfaceDto
fn default() -> UpdateUserInterfaceDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateUserInterfaceDto
impl<'de> Deserialize<'de> for UpdateUserInterfaceDto
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 UpdateUserInterfaceDto
Source§impl From<&UpdateUserInterfaceDto> for UserInterface
impl From<&UpdateUserInterfaceDto> for UserInterface
Source§fn from(dto: &UpdateUserInterfaceDto) -> Self
fn from(dto: &UpdateUserInterfaceDto) -> Self
Converts to this type from the input type.
Source§impl From<UpdateUserInterfaceDto> for UserInterface
impl From<UpdateUserInterfaceDto> for UserInterface
Source§fn from(dto: UpdateUserInterfaceDto) -> Self
fn from(dto: UpdateUserInterfaceDto) -> Self
Converts to this type from the input type.
Source§impl From<UserInterface> for UpdateUserInterfaceDto
impl From<UserInterface> for UpdateUserInterfaceDto
Source§fn from(entity: UserInterface) -> Self
fn from(entity: UserInterface) -> Self
Converts to this type from the input type.
Source§impl From<UserInterfaceDto> for UpdateUserInterfaceDto
impl From<UserInterfaceDto> for UpdateUserInterfaceDto
Source§fn from(dto: UserInterfaceDto) -> Self
fn from(dto: UserInterfaceDto) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UpdateUserInterfaceDto
impl PartialEq for UpdateUserInterfaceDto
Source§fn eq(&self, other: &UpdateUserInterfaceDto) -> bool
fn eq(&self, other: &UpdateUserInterfaceDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateUserInterfaceDto
impl Serialize for UpdateUserInterfaceDto
impl StructuralPartialEq for UpdateUserInterfaceDto
Auto Trait Implementations§
impl Freeze for UpdateUserInterfaceDto
impl RefUnwindSafe for UpdateUserInterfaceDto
impl Send for UpdateUserInterfaceDto
impl Sync for UpdateUserInterfaceDto
impl Unpin for UpdateUserInterfaceDto
impl UnsafeUnpin for UpdateUserInterfaceDto
impl UnwindSafe for UpdateUserInterfaceDto
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