pub struct GroupDef {
pub name: Option<QName>,
pub particle: Box<Particle>,
}Expand description
Represents a group definition in a complex type’s content model.
Fields§
§name: Option<QName>The name of the group (from xs:group[@name]). This is optional because
XBRL allows anonymous groups defined via xs:group inside compositors.
particle: Box<Particle>The particle that this group wraps (sequence, choice, or another group).
Trait Implementations§
impl Eq for GroupDef
impl StructuralPartialEq for GroupDef
Auto Trait Implementations§
impl Freeze for GroupDef
impl RefUnwindSafe for GroupDef
impl Send for GroupDef
impl Sync for GroupDef
impl Unpin for GroupDef
impl UnsafeUnpin for GroupDef
impl UnwindSafe for GroupDef
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.