pub struct LocalRepresentation {
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
The data representation of an attribute.
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 LocalRepresentation
impl Clone for LocalRepresentation
Source§fn clone(&self) -> LocalRepresentation
fn clone(&self) -> LocalRepresentation
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 LocalRepresentation
impl Debug for LocalRepresentation
Source§impl Default for LocalRepresentation
impl Default for LocalRepresentation
Source§fn default() -> LocalRepresentation
fn default() -> LocalRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalRepresentation
impl<'de> Deserialize<'de> for LocalRepresentation
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 PartialEq for LocalRepresentation
impl PartialEq for LocalRepresentation
Source§impl Serialize for LocalRepresentation
impl Serialize for LocalRepresentation
impl Eq for LocalRepresentation
impl StructuralPartialEq for LocalRepresentation
Auto Trait Implementations§
impl Freeze for LocalRepresentation
impl RefUnwindSafe for LocalRepresentation
impl Send for LocalRepresentation
impl Sync for LocalRepresentation
impl Unpin for LocalRepresentation
impl UnwindSafe for LocalRepresentation
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