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