pub struct EnumerationFormat {Show 14 fields
pub data_type: Option<DataType>,
pub is_sequence: Option<bool>,
pub interval: Option<isize>,
pub start_value: Option<isize>,
pub end_value: Option<isize>,
pub time_interval: Option<String>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub min_length: Option<usize>,
pub max_length: Option<usize>,
pub min_value: Option<isize>,
pub max_value: Option<isize>,
pub pattern: Option<String>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A restricted version of Format
that only allows facets
and text types applicable to codes.
Fields§
§data_type: Option<DataType>
§is_sequence: Option<bool>
§interval: Option<isize>
§start_value: Option<isize>
§end_value: Option<isize>
§time_interval: Option<String>
§start_time: Option<String>
§end_time: Option<String>
§min_length: Option<usize>
§max_length: Option<usize>
§min_value: Option<isize>
§max_value: Option<isize>
§pattern: Option<String>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for EnumerationFormat
impl Clone for EnumerationFormat
Source§fn clone(&self) -> EnumerationFormat
fn clone(&self) -> EnumerationFormat
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 Debug for EnumerationFormat
impl Debug for EnumerationFormat
Source§impl Default for EnumerationFormat
impl Default for EnumerationFormat
Source§fn default() -> EnumerationFormat
fn default() -> EnumerationFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnumerationFormat
impl<'de> Deserialize<'de> for EnumerationFormat
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 Extendable for EnumerationFormat
impl Extendable for EnumerationFormat
Source§impl PartialEq for EnumerationFormat
impl PartialEq for EnumerationFormat
Source§impl Serialize for EnumerationFormat
impl Serialize for EnumerationFormat
impl Eq for EnumerationFormat
impl StructuralPartialEq for EnumerationFormat
Auto Trait Implementations§
impl Freeze for EnumerationFormat
impl RefUnwindSafe for EnumerationFormat
impl Send for EnumerationFormat
impl Sync for EnumerationFormat
impl Unpin for EnumerationFormat
impl UnwindSafe for EnumerationFormat
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