Struct libxml::bindings::_xmlSchemaType[][src]

#[repr(C)]pub struct _xmlSchemaType {
    pub type_: xmlSchemaTypeType,
    pub next: *mut _xmlSchemaType,
    pub name: *const xmlChar,
    pub id: *const xmlChar,
    pub ref_: *const xmlChar,
    pub refNs: *const xmlChar,
    pub annot: xmlSchemaAnnotPtr,
    pub subtypes: xmlSchemaTypePtr,
    pub attributes: xmlSchemaAttributePtr,
    pub node: xmlNodePtr,
    pub minOccurs: c_int,
    pub maxOccurs: c_int,
    pub flags: c_int,
    pub contentType: xmlSchemaContentType,
    pub base: *const xmlChar,
    pub baseNs: *const xmlChar,
    pub baseType: xmlSchemaTypePtr,
    pub facets: xmlSchemaFacetPtr,
    pub redef: *mut _xmlSchemaType,
    pub recurse: c_int,
    pub attributeUses: *mut xmlSchemaAttributeLinkPtr,
    pub attributeWildcard: xmlSchemaWildcardPtr,
    pub builtInType: c_int,
    pub memberTypes: xmlSchemaTypeLinkPtr,
    pub facetSet: xmlSchemaFacetLinkPtr,
    pub refPrefix: *const xmlChar,
    pub contentTypeDef: xmlSchemaTypePtr,
    pub contModel: xmlRegexpPtr,
    pub targetNamespace: *const xmlChar,
    pub attrUses: *mut c_void,
}

_xmlSchemaType:

Schemas type definition.

Fields

type_: xmlSchemaTypeTypenext: *mut _xmlSchemaTypename: *const xmlCharid: *const xmlCharref_: *const xmlCharrefNs: *const xmlCharannot: xmlSchemaAnnotPtrsubtypes: xmlSchemaTypePtrattributes: xmlSchemaAttributePtrnode: xmlNodePtrminOccurs: c_intmaxOccurs: c_intflags: c_intcontentType: xmlSchemaContentTypebase: *const xmlCharbaseNs: *const xmlCharbaseType: xmlSchemaTypePtrfacets: xmlSchemaFacetPtrredef: *mut _xmlSchemaTyperecurse: c_intattributeUses: *mut xmlSchemaAttributeLinkPtrattributeWildcard: xmlSchemaWildcardPtrbuiltInType: c_intmemberTypes: xmlSchemaTypeLinkPtrfacetSet: xmlSchemaFacetLinkPtrrefPrefix: *const xmlCharcontentTypeDef: xmlSchemaTypePtrcontModel: xmlRegexpPtrtargetNamespace: *const xmlCharattrUses: *mut c_void

Trait Implementations

impl Clone for _xmlSchemaType[src]

impl Copy for _xmlSchemaType[src]

impl Debug for _xmlSchemaType[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlSchemaType

impl !Send for _xmlSchemaType

impl !Sync for _xmlSchemaType

impl Unpin for _xmlSchemaType

impl UnwindSafe for _xmlSchemaType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.