pub struct Format {Show 15 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 is_multilingual: bool,
pub sentinel_value: Option<Vec<SentinelValue>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The information for describing a range of data formats restricted to the representations allowed for all components except for target objects.
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>
§is_multilingual: bool
§sentinel_value: Option<Vec<SentinelValue>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Format
impl<'de> Deserialize<'de> for Format
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
impl Eq for Format
impl StructuralPartialEq for Format
Auto Trait Implementations§
impl Freeze for Format
impl RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl UnwindSafe for Format
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