pub struct UpdateScreenDetails {
pub name: Option<String>,
pub description: Option<String>,
}
Expand description
UpdateScreenDetails : Details of a screen.
Fields§
§name: Option<String>
The name of the screen. The name must be unique. The maximum length is 255 characters.
description: Option<String>
The description of the screen. The maximum length is 255 characters.
Implementations§
Source§impl UpdateScreenDetails
impl UpdateScreenDetails
Sourcepub fn new() -> UpdateScreenDetails
pub fn new() -> UpdateScreenDetails
Details of a screen.
Trait Implementations§
Source§impl Clone for UpdateScreenDetails
impl Clone for UpdateScreenDetails
Source§fn clone(&self) -> UpdateScreenDetails
fn clone(&self) -> UpdateScreenDetails
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 UpdateScreenDetails
impl Debug for UpdateScreenDetails
Source§impl Default for UpdateScreenDetails
impl Default for UpdateScreenDetails
Source§fn default() -> UpdateScreenDetails
fn default() -> UpdateScreenDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateScreenDetails
impl<'de> Deserialize<'de> for UpdateScreenDetails
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 PartialEq for UpdateScreenDetails
impl PartialEq for UpdateScreenDetails
Source§impl Serialize for UpdateScreenDetails
impl Serialize for UpdateScreenDetails
impl StructuralPartialEq for UpdateScreenDetails
Auto Trait Implementations§
impl Freeze for UpdateScreenDetails
impl RefUnwindSafe for UpdateScreenDetails
impl Send for UpdateScreenDetails
impl Sync for UpdateScreenDetails
impl Unpin for UpdateScreenDetails
impl UnwindSafe for UpdateScreenDetails
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