#[repr(C)]pub struct QXmlStreamEntityDeclaration { /* private fields */ }
Expand description
The QXmlStreamEntityDeclaration class represents a DTD entity declaration.
C++ class: QXmlStreamEntityDeclaration
.
The QXmlStreamEntityDeclaration class represents a DTD entity declaration.
An entity declaration consists of a name(), a notationName(), a systemId(), a publicId(), and a value().
Implementations§
Source§impl QXmlStreamEntityDeclaration
impl QXmlStreamEntityDeclaration
Sourcepub unsafe fn copy_from(
&self,
arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>,
) -> Ref<QXmlStreamEntityDeclaration>
pub unsafe fn copy_from( &self, arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>, ) -> Ref<QXmlStreamEntityDeclaration>
Assigns other to this entity declaration.
Calls C++ function: QXmlStreamEntityDeclaration& QXmlStreamEntityDeclaration::operator=(const QXmlStreamEntityDeclaration& arg1)
.
Assigns other to this entity declaration.
Sourcepub unsafe fn name(&self) -> CppBox<QStringRef>
pub unsafe fn name(&self) -> CppBox<QStringRef>
Returns the entity name.
Calls C++ function: QStringRef QXmlStreamEntityDeclaration::name() const
.
Returns the entity name.
Sourcepub unsafe fn new() -> CppBox<QXmlStreamEntityDeclaration>
pub unsafe fn new() -> CppBox<QXmlStreamEntityDeclaration>
Creates an empty entity declaration.
Calls C++ function: [constructor] void QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration()
.
Creates an empty entity declaration.
Sourcepub unsafe fn new_copy(
arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>,
) -> CppBox<QXmlStreamEntityDeclaration>
pub unsafe fn new_copy( arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>, ) -> CppBox<QXmlStreamEntityDeclaration>
Creates a copy of other.
Calls C++ function: [constructor] void QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration(const QXmlStreamEntityDeclaration& arg1)
.
Creates a copy of other.
Sourcepub unsafe fn notation_name(&self) -> CppBox<QStringRef>
pub unsafe fn notation_name(&self) -> CppBox<QStringRef>
Returns the notation name.
Calls C++ function: QStringRef QXmlStreamEntityDeclaration::notationName() const
.
Returns the notation name.
Sourcepub unsafe fn public_id(&self) -> CppBox<QStringRef>
pub unsafe fn public_id(&self) -> CppBox<QStringRef>
Returns the public identifier.
Calls C++ function: QStringRef QXmlStreamEntityDeclaration::publicId() const
.
Returns the public identifier.
Sourcepub unsafe fn system_id(&self) -> CppBox<QStringRef>
pub unsafe fn system_id(&self) -> CppBox<QStringRef>
Returns the system identifier.
Calls C++ function: QStringRef QXmlStreamEntityDeclaration::systemId() const
.
Returns the system identifier.
Sourcepub unsafe fn value(&self) -> CppBox<QStringRef>
pub unsafe fn value(&self) -> CppBox<QStringRef>
Returns the entity's value.
Calls C++ function: QStringRef QXmlStreamEntityDeclaration::value() const
.
Returns the entity’s value.
Trait Implementations§
Source§impl CppDeletable for QXmlStreamEntityDeclaration
impl CppDeletable for QXmlStreamEntityDeclaration
Source§impl PartialEq<Ref<QXmlStreamEntityDeclaration>> for QXmlStreamEntityDeclaration
impl PartialEq<Ref<QXmlStreamEntityDeclaration>> for QXmlStreamEntityDeclaration
Source§fn eq(&self, other: &Ref<QXmlStreamEntityDeclaration>) -> bool
fn eq(&self, other: &Ref<QXmlStreamEntityDeclaration>) -> bool
Compares this entity declaration with other and returns true
if they are equal; otherwise returns false
.
Calls C++ function: bool QXmlStreamEntityDeclaration::operator==(const QXmlStreamEntityDeclaration& other) const
.
Compares this entity declaration with other and returns true
if they are equal; otherwise returns false
.