pub struct XmlElementParams<'a> {
pub element: XmlElement,
pub disassembled_path: &'a str,
pub unique_id_elements: Option<&'a str>,
pub root_element_name: &'a str,
pub root_attributes: XmlElement,
pub key: &'a str,
pub leaf_content: XmlElement,
pub leaf_count: usize,
pub has_nested_elements: bool,
pub format: &'a str,
pub xml_declaration: Option<XmlElement>,
pub strategy: &'a str,
}Expand description
Parameters for parsing an element during disassembly.
Fields§
§element: XmlElement§disassembled_path: &'a str§unique_id_elements: Option<&'a str>§root_element_name: &'a str§root_attributes: XmlElement§key: &'a str§leaf_content: XmlElement§leaf_count: usize§has_nested_elements: bool§format: &'a str§xml_declaration: Option<XmlElement>§strategy: &'a strTrait Implementations§
Source§impl<'a> Clone for XmlElementParams<'a>
impl<'a> Clone for XmlElementParams<'a>
Source§fn clone(&self) -> XmlElementParams<'a>
fn clone(&self) -> XmlElementParams<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for XmlElementParams<'a>
impl<'a> RefUnwindSafe for XmlElementParams<'a>
impl<'a> Send for XmlElementParams<'a>
impl<'a> Sync for XmlElementParams<'a>
impl<'a> Unpin for XmlElementParams<'a>
impl<'a> UnwindSafe for XmlElementParams<'a>
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