pub struct InlineFragment {
pub element_name: String,
pub fact_name: Option<String>,
pub context_ref: Option<String>,
pub unit_ref: Option<String>,
pub decimals: Option<String>,
pub value: String,
pub attributes: BTreeMap<String, String>,
}Fields§
§element_name: String§fact_name: Option<String>§context_ref: Option<String>§unit_ref: Option<String>§decimals: Option<String>§value: String§attributes: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for InlineFragment
impl Clone for InlineFragment
Source§fn clone(&self) -> InlineFragment
fn clone(&self) -> InlineFragment
Returns a duplicate 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 InlineFragment
impl Debug for InlineFragment
Source§impl Default for InlineFragment
impl Default for InlineFragment
Source§fn default() -> InlineFragment
fn default() -> InlineFragment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlineFragment
impl<'de> Deserialize<'de> for InlineFragment
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 InlineFragment
impl PartialEq for InlineFragment
Source§impl Serialize for InlineFragment
impl Serialize for InlineFragment
impl Eq for InlineFragment
impl StructuralPartialEq for InlineFragment
Auto Trait Implementations§
impl Freeze for InlineFragment
impl RefUnwindSafe for InlineFragment
impl Send for InlineFragment
impl Sync for InlineFragment
impl Unpin for InlineFragment
impl UnsafeUnpin for InlineFragment
impl UnwindSafe for InlineFragment
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