pub struct CoreRepresentation {
pub enumeration: Option<String>,
pub enumeration_format: Option<EnumerationFormat>,
pub format: Option<Format>,
pub min_occurs: Option<usize>,
pub max_occurs: Option<Occurrence>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A core representation for a concept.
Fields§
§enumeration: Option<String>
§enumeration_format: Option<EnumerationFormat>
§format: Option<Format>
§min_occurs: Option<usize>
§max_occurs: Option<Occurrence>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for CoreRepresentation
impl Clone for CoreRepresentation
Source§fn clone(&self) -> CoreRepresentation
fn clone(&self) -> CoreRepresentation
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 CoreRepresentation
impl Debug for CoreRepresentation
Source§impl Default for CoreRepresentation
impl Default for CoreRepresentation
Source§fn default() -> CoreRepresentation
fn default() -> CoreRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CoreRepresentation
impl<'de> Deserialize<'de> for CoreRepresentation
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 CoreRepresentation
impl Extendable for CoreRepresentation
Source§impl PartialEq for CoreRepresentation
impl PartialEq for CoreRepresentation
Source§impl Serialize for CoreRepresentation
impl Serialize for CoreRepresentation
impl Eq for CoreRepresentation
impl StructuralPartialEq for CoreRepresentation
Auto Trait Implementations§
impl Freeze for CoreRepresentation
impl RefUnwindSafe for CoreRepresentation
impl Send for CoreRepresentation
impl Sync for CoreRepresentation
impl Unpin for CoreRepresentation
impl UnwindSafe for CoreRepresentation
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