pub struct TaxField {
pub name: String,
pub value: String,
}Expand description
A single XML field represented as a <name>value</name> pair.
Fields§
§name: StringXML tag name.
value: StringText content (will be XML-escaped on serialisation).
Implementations§
Trait Implementations§
impl Eq for TaxField
impl StructuralPartialEq for TaxField
Auto Trait Implementations§
impl Freeze for TaxField
impl RefUnwindSafe for TaxField
impl Send for TaxField
impl Sync for TaxField
impl Unpin for TaxField
impl UnsafeUnpin for TaxField
impl UnwindSafe for TaxField
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