#[non_exhaustive]pub struct FormInputValuePropertyBindingProperties {
pub property: Option<String>,
pub field: Option<String>,
}Expand description
Associates a form property to a binding property. This enables exposed properties on the top level form to propagate data to the form's property values.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.property: Option<String>The form property to bind to the data field.
field: Option<String>The data field to bind the property to.
Implementations§
source§impl FormInputValuePropertyBindingProperties
impl FormInputValuePropertyBindingProperties
sourcepub fn builder() -> FormInputValuePropertyBindingPropertiesBuilder
pub fn builder() -> FormInputValuePropertyBindingPropertiesBuilder
Creates a new builder-style object to manufacture FormInputValuePropertyBindingProperties.
Trait Implementations§
source§impl Clone for FormInputValuePropertyBindingProperties
impl Clone for FormInputValuePropertyBindingProperties
source§fn clone(&self) -> FormInputValuePropertyBindingProperties
fn clone(&self) -> FormInputValuePropertyBindingProperties
Returns a copy 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 PartialEq<FormInputValuePropertyBindingProperties> for FormInputValuePropertyBindingProperties
impl PartialEq<FormInputValuePropertyBindingProperties> for FormInputValuePropertyBindingProperties
source§fn eq(&self, other: &FormInputValuePropertyBindingProperties) -> bool
fn eq(&self, other: &FormInputValuePropertyBindingProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FormInputValuePropertyBindingProperties
Auto Trait Implementations§
impl RefUnwindSafe for FormInputValuePropertyBindingProperties
impl Send for FormInputValuePropertyBindingProperties
impl Sync for FormInputValuePropertyBindingProperties
impl Unpin for FormInputValuePropertyBindingProperties
impl UnwindSafe for FormInputValuePropertyBindingProperties
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