Struct libxml::bindings::_xmlSAXHandlerV1[][src]

#[repr(C)]pub struct _xmlSAXHandlerV1 {
    pub internalSubset: internalSubsetSAXFunc,
    pub isStandalone: isStandaloneSAXFunc,
    pub hasInternalSubset: hasInternalSubsetSAXFunc,
    pub hasExternalSubset: hasExternalSubsetSAXFunc,
    pub resolveEntity: resolveEntitySAXFunc,
    pub getEntity: getEntitySAXFunc,
    pub entityDecl: entityDeclSAXFunc,
    pub notationDecl: notationDeclSAXFunc,
    pub attributeDecl: attributeDeclSAXFunc,
    pub elementDecl: elementDeclSAXFunc,
    pub unparsedEntityDecl: unparsedEntityDeclSAXFunc,
    pub setDocumentLocator: setDocumentLocatorSAXFunc,
    pub startDocument: startDocumentSAXFunc,
    pub endDocument: endDocumentSAXFunc,
    pub startElement: startElementSAXFunc,
    pub endElement: endElementSAXFunc,
    pub reference: referenceSAXFunc,
    pub characters: charactersSAXFunc,
    pub ignorableWhitespace: ignorableWhitespaceSAXFunc,
    pub processingInstruction: processingInstructionSAXFunc,
    pub comment: commentSAXFunc,
    pub warning: warningSAXFunc,
    pub error: errorSAXFunc,
    pub fatalError: fatalErrorSAXFunc,
    pub getParameterEntity: getParameterEntitySAXFunc,
    pub cdataBlock: cdataBlockSAXFunc,
    pub externalSubset: externalSubsetSAXFunc,
    pub initialized: c_uint,
}

Fields

internalSubset: internalSubsetSAXFuncisStandalone: isStandaloneSAXFunchasInternalSubset: hasInternalSubsetSAXFunchasExternalSubset: hasExternalSubsetSAXFuncresolveEntity: resolveEntitySAXFuncgetEntity: getEntitySAXFuncentityDecl: entityDeclSAXFuncnotationDecl: notationDeclSAXFuncattributeDecl: attributeDeclSAXFuncelementDecl: elementDeclSAXFuncunparsedEntityDecl: unparsedEntityDeclSAXFuncsetDocumentLocator: setDocumentLocatorSAXFuncstartDocument: startDocumentSAXFuncendDocument: endDocumentSAXFuncstartElement: startElementSAXFuncendElement: endElementSAXFuncreference: referenceSAXFunccharacters: charactersSAXFuncignorableWhitespace: ignorableWhitespaceSAXFuncprocessingInstruction: processingInstructionSAXFunccomment: commentSAXFuncwarning: warningSAXFuncerror: errorSAXFuncfatalError: fatalErrorSAXFuncgetParameterEntity: getParameterEntitySAXFunccdataBlock: cdataBlockSAXFuncexternalSubset: externalSubsetSAXFuncinitialized: c_uint

Trait Implementations

impl Clone for _xmlSAXHandlerV1[src]

impl Copy for _xmlSAXHandlerV1[src]

impl Debug for _xmlSAXHandlerV1[src]

Auto Trait Implementations

impl RefUnwindSafe for _xmlSAXHandlerV1

impl Send for _xmlSAXHandlerV1

impl Sync for _xmlSAXHandlerV1

impl Unpin for _xmlSAXHandlerV1

impl UnwindSafe for _xmlSAXHandlerV1

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.