pub struct PersonList {
pub xmlns: String,
pub persons: Vec<Person>,
}Expand description
Root element for the person list XML (xl/persons/person.xml).
Fields§
§xmlns: String§persons: Vec<Person>Trait Implementations§
Source§impl Clone for PersonList
impl Clone for PersonList
Source§fn clone(&self) -> PersonList
fn clone(&self) -> PersonList
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 PersonList
impl Debug for PersonList
Source§impl Default for PersonList
impl Default for PersonList
Source§impl<'de> Deserialize<'de> for PersonList
impl<'de> Deserialize<'de> for PersonList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PersonList
impl PartialEq for PersonList
Source§impl Serialize for PersonList
impl Serialize for PersonList
impl StructuralPartialEq for PersonList
Auto Trait Implementations§
impl Freeze for PersonList
impl RefUnwindSafe for PersonList
impl Send for PersonList
impl Sync for PersonList
impl Unpin for PersonList
impl UnwindSafe for PersonList
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