#[repr(C)]pub struct _xmlSchemaAttribute {Show 19 fields
pub type_: xmlSchemaTypeType,
pub next: *mut _xmlSchemaAttribute,
pub name: *const xmlChar,
pub id: *const xmlChar,
pub ref_: *const xmlChar,
pub refNs: *const xmlChar,
pub typeName: *const xmlChar,
pub typeNs: *const xmlChar,
pub annot: *mut xmlSchemaAnnot,
pub base: *mut xmlSchemaType,
pub occurs: c_int,
pub defValue: *const xmlChar,
pub subtypes: *mut xmlSchemaType,
pub node: *mut xmlNode,
pub targetNamespace: *const xmlChar,
pub flags: c_int,
pub refPrefix: *const xmlChar,
pub defVal: *mut xmlSchemaVal,
pub refDecl: *mut xmlSchemaAttribute,
}Expand description
An attribute definition.
Fields§
§type_: xmlSchemaTypeType§next: *mut _xmlSchemaAttribute§name: *const xmlChar§id: *const xmlChar§ref_: *const xmlChar§refNs: *const xmlChar§typeName: *const xmlChar§typeNs: *const xmlChar§annot: *mut xmlSchemaAnnot§base: *mut xmlSchemaType§occurs: c_int§defValue: *const xmlChar§subtypes: *mut xmlSchemaType§node: *mut xmlNode§targetNamespace: *const xmlChar§flags: c_int§refPrefix: *const xmlChar§defVal: *mut xmlSchemaVal§refDecl: *mut xmlSchemaAttributeTrait Implementations§
Source§impl Clone for _xmlSchemaAttribute
impl Clone for _xmlSchemaAttribute
Source§fn clone(&self) -> _xmlSchemaAttribute
fn clone(&self) -> _xmlSchemaAttribute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _xmlSchemaAttribute
Auto Trait Implementations§
impl !Send for _xmlSchemaAttribute
impl !Sync for _xmlSchemaAttribute
impl Freeze for _xmlSchemaAttribute
impl RefUnwindSafe for _xmlSchemaAttribute
impl Unpin for _xmlSchemaAttribute
impl UnsafeUnpin for _xmlSchemaAttribute
impl UnwindSafe for _xmlSchemaAttribute
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