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