pub struct WriteOpts {
pub indent: Indent,
pub newline: Newline,
}Expand description
Options for controlling how the XML Document is written when serialized.
Fields§
§indent: IndentThe type of indenting to use when writing the document, i.e. tabs, 2 spaces, 4 spaces.
newline: NewlineThe type of newline to use when writing the document.
Trait Implementations§
Source§impl PartialOrd for WriteOpts
impl PartialOrd for WriteOpts
impl Eq for WriteOpts
impl StructuralPartialEq for WriteOpts
Auto Trait Implementations§
impl Freeze for WriteOpts
impl RefUnwindSafe for WriteOpts
impl Send for WriteOpts
impl Sync for WriteOpts
impl Unpin for WriteOpts
impl UnwindSafe for WriteOpts
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