pub struct TypePostfix {
pub type_: String,
pub element: String,
pub element_type: String,
}
Expand description
Postfixed that will be added to the different types generated by the code generator.
Fields§
§type_: String
Postfix added to normal types (like xs:simpleType
or xs:complexType
).
element: String
Postfixes added to elements (like xs:element
).
element_type: String
Postfixes added to inline types if elements (like xs:element
).
Trait Implementations§
Source§impl Clone for TypePostfix
impl Clone for TypePostfix
Source§fn clone(&self) -> TypePostfix
fn clone(&self) -> TypePostfix
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 TypePostfix
impl Debug for TypePostfix
Auto Trait Implementations§
impl Freeze for TypePostfix
impl RefUnwindSafe for TypePostfix
impl Send for TypePostfix
impl Sync for TypePostfix
impl Unpin for TypePostfix
impl UnwindSafe for TypePostfix
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