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