pub struct RootElement {
pub xml_name: String,
pub type_name: String,
}Expand description
A top-level element declaration referencing a named type.
Fields§
§xml_name: StringThe XML element name (e.g. "AppHdr").
type_name: StringThe type name the element uses (e.g. "BusinessApplicationHeaderV04").
Trait Implementations§
Source§impl Clone for RootElement
impl Clone for RootElement
Source§fn clone(&self) -> RootElement
fn clone(&self) -> RootElement
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 RootElement
impl Debug for RootElement
Source§impl PartialEq for RootElement
impl PartialEq for RootElement
impl StructuralPartialEq for RootElement
Auto Trait Implementations§
impl Freeze for RootElement
impl RefUnwindSafe for RootElement
impl Send for RootElement
impl Sync for RootElement
impl Unpin for RootElement
impl UnsafeUnpin for RootElement
impl UnwindSafe for RootElement
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