pub struct UiSchemaInput {
pub id: String,
pub input_type: UiSchemaInputType,
pub required: bool,
pub sensitive: bool,
pub options: Option<Vec<UiSchemaInputFieldOption>>,
/* private fields */
}Fields§
§id: String§input_type: UiSchemaInputType§required: bool§sensitive: bool§options: Option<Vec<UiSchemaInputFieldOption>>Trait Implementations§
Source§impl Clone for UiSchemaInput
impl Clone for UiSchemaInput
Source§fn clone(&self) -> UiSchemaInput
fn clone(&self) -> UiSchemaInput
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 UiSchemaInput
impl Debug for UiSchemaInput
Source§impl<'de> Deserialize<'de> for UiSchemaInput
impl<'de> Deserialize<'de> for UiSchemaInput
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
Auto Trait Implementations§
impl Freeze for UiSchemaInput
impl RefUnwindSafe for UiSchemaInput
impl Send for UiSchemaInput
impl Sync for UiSchemaInput
impl Unpin for UiSchemaInput
impl UnsafeUnpin for UiSchemaInput
impl UnwindSafe for UiSchemaInput
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