pub struct Complex {
pub type_name: Option<String>,
pub fields: Vec<(String, Field)>,
}Expand description
Child fields of a complex type, in document order.
Fields§
§type_name: Option<String>Set when $type / xsi:type overrides the declared type.
fields: Vec<(String, Field)>Implementations§
Trait Implementations§
impl StructuralPartialEq for Complex
Auto Trait Implementations§
impl Freeze for Complex
impl RefUnwindSafe for Complex
impl Send for Complex
impl Sync for Complex
impl Unpin for Complex
impl UnwindSafe for Complex
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