pub struct ComplexTypeStruct<'types> {
pub base: ComplexTypeBase,
pub mode: StructMode<'types>,
pub attributes: Vec<ComplexTypeAttribute<'types>>,
pub any_attribute: Option<&'types AnyAttributeInfo>,
}Expand description
Represents a rust struct.
Is used as part of the ComplexType.
Fields§
§base: ComplexTypeBaseBasic type information.
mode: StructMode<'types>Additional information about the content of the struct.
attributes: Vec<ComplexTypeAttribute<'types>>List of xs:attributes contained in this struct.
any_attribute: Option<&'types AnyAttributeInfo>Content of the xs:anyAttribute.
Trait Implementations§
Source§impl<'types> Debug for ComplexTypeStruct<'types>
impl<'types> Debug for ComplexTypeStruct<'types>
Auto Trait Implementations§
impl<'types> Freeze for ComplexTypeStruct<'types>
impl<'types> RefUnwindSafe for ComplexTypeStruct<'types>
impl<'types> !Send for ComplexTypeStruct<'types>
impl<'types> !Sync for ComplexTypeStruct<'types>
impl<'types> Unpin for ComplexTypeStruct<'types>
impl<'types> UnwindSafe for ComplexTypeStruct<'types>
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