pub struct UiSchemaInputType {
pub single_type: UiSchemaInputSingleType,
pub is_array: bool,
}Fields§
§single_type: UiSchemaInputSingleType§is_array: boolTrait Implementations§
Source§impl Clone for UiSchemaInputType
impl Clone for UiSchemaInputType
Source§fn clone(&self) -> UiSchemaInputType
fn clone(&self) -> UiSchemaInputType
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 UiSchemaInputType
impl Debug for UiSchemaInputType
Source§impl<'de> Deserialize<'de> for UiSchemaInputType
impl<'de> Deserialize<'de> for UiSchemaInputType
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 From<UiSchemaInputType> for SerializedUiSchemaInputType
impl From<UiSchemaInputType> for SerializedUiSchemaInputType
Source§fn from(input_type: UiSchemaInputType) -> Self
fn from(input_type: UiSchemaInputType) -> Self
Converts to this type from the input type.
Source§impl Serialize for UiSchemaInputType
impl Serialize for UiSchemaInputType
Source§impl TryFrom<SerializedUiSchemaInputType> for UiSchemaInputType
impl TryFrom<SerializedUiSchemaInputType> for UiSchemaInputType
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for UiSchemaInputType
impl RefUnwindSafe for UiSchemaInputType
impl Send for UiSchemaInputType
impl Sync for UiSchemaInputType
impl Unpin for UiSchemaInputType
impl UnsafeUnpin for UiSchemaInputType
impl UnwindSafe for UiSchemaInputType
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