pub struct BuildDisassembledFileOptions<'a> {
pub content: XmlElement,
pub disassembled_path: &'a str,
pub output_file_name: Option<&'a str>,
pub subdirectory: Option<&'a str>,
pub wrap_key: Option<&'a str>,
pub is_grouped_array: bool,
pub root_element_name: &'a str,
pub root_attributes: XmlElement,
pub format: &'a str,
pub xml_declaration: Option<XmlElement>,
pub unique_id_elements: Option<&'a str>,
}Expand description
Options for building a single disassembled file.
Fields§
§content: XmlElement§disassembled_path: &'a str§output_file_name: Option<&'a str>§subdirectory: Option<&'a str>§wrap_key: Option<&'a str>§is_grouped_array: bool§root_element_name: &'a str§root_attributes: XmlElement§format: &'a str§xml_declaration: Option<XmlElement>§unique_id_elements: Option<&'a str>Trait Implementations§
Source§impl<'a> Clone for BuildDisassembledFileOptions<'a>
impl<'a> Clone for BuildDisassembledFileOptions<'a>
Source§fn clone(&self) -> BuildDisassembledFileOptions<'a>
fn clone(&self) -> BuildDisassembledFileOptions<'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 BuildDisassembledFileOptions<'a>
impl<'a> RefUnwindSafe for BuildDisassembledFileOptions<'a>
impl<'a> Send for BuildDisassembledFileOptions<'a>
impl<'a> Sync for BuildDisassembledFileOptions<'a>
impl<'a> Unpin for BuildDisassembledFileOptions<'a>
impl<'a> UnwindSafe for BuildDisassembledFileOptions<'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