pub struct LeafWriteParams<'a> {
pub leaf_count: usize,
pub leaf_content: XmlElement,
pub strategy: &'a str,
pub key_order: Vec<String>,
pub options: LeafWriteOptions<'a>,
}Expand description
Parameters for writing leaf content.
Fields§
§leaf_count: usize§leaf_content: XmlElement§strategy: &'a str§key_order: Vec<String>§options: LeafWriteOptions<'a>Trait Implementations§
Source§impl<'a> Clone for LeafWriteParams<'a>
impl<'a> Clone for LeafWriteParams<'a>
Source§fn clone(&self) -> LeafWriteParams<'a>
fn clone(&self) -> LeafWriteParams<'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 LeafWriteParams<'a>
impl<'a> RefUnwindSafe for LeafWriteParams<'a>
impl<'a> Send for LeafWriteParams<'a>
impl<'a> Sync for LeafWriteParams<'a>
impl<'a> Unpin for LeafWriteParams<'a>
impl<'a> UnwindSafe for LeafWriteParams<'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