pub struct UserInterfaceDto {
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 UserInterfaceDto
impl Clone for UserInterfaceDto
Source§fn clone(&self) -> UserInterfaceDto
fn clone(&self) -> UserInterfaceDto
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 UserInterfaceDto
impl Debug for UserInterfaceDto
Source§impl Default for UserInterfaceDto
impl Default for UserInterfaceDto
Source§fn default() -> UserInterfaceDto
fn default() -> UserInterfaceDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserInterfaceDto
impl<'de> Deserialize<'de> for UserInterfaceDto
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 UserInterfaceDto
Source§impl From<&UserInterfaceDto> for UserInterface
impl From<&UserInterfaceDto> for UserInterface
Source§fn from(dto: &UserInterfaceDto) -> Self
fn from(dto: &UserInterfaceDto) -> Self
Converts to this type from the input type.
Source§impl From<UserInterface> for UserInterfaceDto
impl From<UserInterface> for UserInterfaceDto
Source§fn from(entity: UserInterface) -> Self
fn from(entity: UserInterface) -> Self
Converts to this type from the input type.
Source§impl From<UserInterfaceDto> for UserInterface
impl From<UserInterfaceDto> for UserInterface
Source§fn from(dto: UserInterfaceDto) -> Self
fn from(dto: UserInterfaceDto) -> 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 UserInterfaceDto
impl PartialEq for UserInterfaceDto
Source§fn eq(&self, other: &UserInterfaceDto) -> bool
fn eq(&self, other: &UserInterfaceDto) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UserInterfaceDto
impl Serialize for UserInterfaceDto
impl StructuralPartialEq for UserInterfaceDto
Auto Trait Implementations§
impl Freeze for UserInterfaceDto
impl RefUnwindSafe for UserInterfaceDto
impl Send for UserInterfaceDto
impl Sync for UserInterfaceDto
impl Unpin for UserInterfaceDto
impl UnsafeUnpin for UserInterfaceDto
impl UnwindSafe for UserInterfaceDto
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