pub struct FlowFormFieldView {
pub var: String,
pub value_type: FlowFieldValueTypeView,
pub control: FlowFieldControlView,
pub required: bool,
pub repeat: bool,
pub label: Option<String>,
pub options: Option<Vec<Value>>,
pub option_unavailable_text: Option<String>,
pub read_only: bool,
pub has_value: bool,
pub min_rows: Option<u32>,
}Fields§
§var: String§value_type: FlowFieldValueTypeView§control: FlowFieldControlView§required: bool§repeat: bool§label: Option<String>§options: Option<Vec<Value>>§read_only: bool§has_value: bool§min_rows: Option<u32>Trait Implementations§
Source§impl Clone for FlowFormFieldView
impl Clone for FlowFormFieldView
Source§fn clone(&self) -> FlowFormFieldView
fn clone(&self) -> FlowFormFieldView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FlowFormFieldView
impl Debug for FlowFormFieldView
Source§impl<'de> Deserialize<'de> for FlowFormFieldView
impl<'de> Deserialize<'de> for FlowFormFieldView
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 FlowFormFieldView
impl PartialEq for FlowFormFieldView
Source§impl Serialize for FlowFormFieldView
impl Serialize for FlowFormFieldView
impl StructuralPartialEq for FlowFormFieldView
Auto Trait Implementations§
impl Freeze for FlowFormFieldView
impl RefUnwindSafe for FlowFormFieldView
impl Send for FlowFormFieldView
impl Sync for FlowFormFieldView
impl Unpin for FlowFormFieldView
impl UnsafeUnpin for FlowFormFieldView
impl UnwindSafe for FlowFormFieldView
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