pub struct FormLayout {
pub extensions: Vec<Extension>,
pub pages: Vec<Page>,
pub system_controls: Vec<Control>,
}Expand description
Describes the layout of a work item type
Fields§
§extensions: Vec<Extension>Gets and sets extensions list.
pages: Vec<Page>Top level tabs of the layout.
system_controls: Vec<Control>Headers controls of the layout.
Implementations§
Source§impl FormLayout
impl FormLayout
Trait Implementations§
Source§impl Clone for FormLayout
impl Clone for FormLayout
Source§fn clone(&self) -> FormLayout
fn clone(&self) -> FormLayout
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 FormLayout
impl Debug for FormLayout
Source§impl Default for FormLayout
impl Default for FormLayout
Source§fn default() -> FormLayout
fn default() -> FormLayout
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FormLayout
impl<'de> Deserialize<'de> for FormLayout
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 FormLayout
impl PartialEq for FormLayout
Source§impl Serialize for FormLayout
impl Serialize for FormLayout
impl StructuralPartialEq for FormLayout
Auto Trait Implementations§
impl Freeze for FormLayout
impl RefUnwindSafe for FormLayout
impl Send for FormLayout
impl Sync for FormLayout
impl Unpin for FormLayout
impl UnwindSafe for FormLayout
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