pub struct CustomFieldDescriptor {
pub name: String,
pub label: String,
pub field_type: FieldType,
pub required: bool,
pub help_text: Option<String>,
pub min_length: Option<u64>,
pub max_length: Option<u64>,
pub minimum: Option<f64>,
pub maximum: Option<f64>,
pub default_value: Option<Value>,
pub enum_values: Option<Vec<Value>>,
}Expand description
Describes a custom field for template rendering.
Fields§
§name: String§label: String§field_type: FieldType§required: bool§help_text: Option<String>§min_length: Option<u64>§max_length: Option<u64>§minimum: Option<f64>§maximum: Option<f64>§default_value: Option<Value>§enum_values: Option<Vec<Value>>Trait Implementations§
Source§impl Clone for CustomFieldDescriptor
impl Clone for CustomFieldDescriptor
Source§fn clone(&self) -> CustomFieldDescriptor
fn clone(&self) -> CustomFieldDescriptor
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 CustomFieldDescriptor
impl Debug for CustomFieldDescriptor
Auto Trait Implementations§
impl Freeze for CustomFieldDescriptor
impl RefUnwindSafe for CustomFieldDescriptor
impl Send for CustomFieldDescriptor
impl Sync for CustomFieldDescriptor
impl Unpin for CustomFieldDescriptor
impl UnsafeUnpin for CustomFieldDescriptor
impl UnwindSafe for CustomFieldDescriptor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more