pub struct UpdateScreenTypes {
pub edit: Option<String>,
pub create: Option<String>,
pub view: Option<String>,
pub default: Option<String>,
}Expand description
UpdateScreenTypes : The IDs of the screens for the screen types of the screen scheme.
Fields§
§edit: Option<String>The ID of the edit screen. To remove the screen association, pass a null.
create: Option<String>The ID of the create screen. To remove the screen association, pass a null.
view: Option<String>The ID of the view screen. To remove the screen association, pass a null.
default: Option<String>The ID of the default screen. When specified, must include a screen ID as a default screen is required.
Implementations§
Source§impl UpdateScreenTypes
impl UpdateScreenTypes
Sourcepub fn new() -> UpdateScreenTypes
pub fn new() -> UpdateScreenTypes
The IDs of the screens for the screen types of the screen scheme.
Trait Implementations§
Source§impl Clone for UpdateScreenTypes
impl Clone for UpdateScreenTypes
Source§fn clone(&self) -> UpdateScreenTypes
fn clone(&self) -> UpdateScreenTypes
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 UpdateScreenTypes
impl Debug for UpdateScreenTypes
Source§impl Default for UpdateScreenTypes
impl Default for UpdateScreenTypes
Source§fn default() -> UpdateScreenTypes
fn default() -> UpdateScreenTypes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateScreenTypes
impl<'de> Deserialize<'de> for UpdateScreenTypes
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 UpdateScreenTypes
impl PartialEq for UpdateScreenTypes
Source§impl Serialize for UpdateScreenTypes
impl Serialize for UpdateScreenTypes
impl StructuralPartialEq for UpdateScreenTypes
Auto Trait Implementations§
impl Freeze for UpdateScreenTypes
impl RefUnwindSafe for UpdateScreenTypes
impl Send for UpdateScreenTypes
impl Sync for UpdateScreenTypes
impl Unpin for UpdateScreenTypes
impl UnwindSafe for UpdateScreenTypes
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