[][src]Struct qt_core::QXmlStreamEntityDeclaration

#[repr(C)]
pub struct QXmlStreamEntityDeclaration { /* fields omitted */ }

The QXmlStreamEntityDeclaration class represents a DTD entity declaration.

C++ class: QXmlStreamEntityDeclaration.

C++ documentation:

The QXmlStreamEntityDeclaration class represents a DTD entity declaration.

An entity declaration consists of a name(), a notationName(), a systemId(), a publicId(), and a value().

Methods

impl QXmlStreamEntityDeclaration[src]

pub unsafe fn copy_from(
    &mut self,
    arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>
) -> MutRef<QXmlStreamEntityDeclaration>
[src]

Assigns other to this entity declaration.

Calls C++ function: QXmlStreamEntityDeclaration& QXmlStreamEntityDeclaration::operator=(const QXmlStreamEntityDeclaration& arg1).

C++ documentation:

Assigns other to this entity declaration.

pub unsafe fn name(&self) -> CppBox<QStringRef>[src]

Returns the entity name.

Calls C++ function: QStringRef QXmlStreamEntityDeclaration::name() const.

C++ documentation:

Returns the entity name.

pub unsafe fn new() -> CppBox<QXmlStreamEntityDeclaration>[src]

Creates an empty entity declaration.

Calls C++ function: [constructor] void QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration().

C++ documentation:

Creates an empty entity declaration.

pub unsafe fn new_copy(
    arg1: impl CastInto<Ref<QXmlStreamEntityDeclaration>>
) -> CppBox<QXmlStreamEntityDeclaration>
[src]

Creates a copy of other.

Calls C++ function: [constructor] void QXmlStreamEntityDeclaration::QXmlStreamEntityDeclaration(const QXmlStreamEntityDeclaration& arg1).

C++ documentation:

Creates a copy of other.

pub unsafe fn notation_name(&self) -> CppBox<QStringRef>[src]

Returns the notation name.

Calls C++ function: QStringRef QXmlStreamEntityDeclaration::notationName() const.

C++ documentation:

Returns the notation name.

pub unsafe fn public_id(&self) -> CppBox<QStringRef>[src]

Returns the public identifier.

Calls C++ function: QStringRef QXmlStreamEntityDeclaration::publicId() const.

C++ documentation:

Returns the public identifier.

pub unsafe fn system_id(&self) -> CppBox<QStringRef>[src]

Returns the system identifier.

Calls C++ function: QStringRef QXmlStreamEntityDeclaration::systemId() const.

C++ documentation:

Returns the system identifier.

pub unsafe fn value(&self) -> CppBox<QStringRef>[src]

Returns the entity's value.

Calls C++ function: QStringRef QXmlStreamEntityDeclaration::value() const.

C++ documentation:

Returns the entity's value.

Trait Implementations

impl PartialEq<Ref<QXmlStreamEntityDeclaration>> for QXmlStreamEntityDeclaration[src]

fn eq(&self, other: &Ref<QXmlStreamEntityDeclaration>) -> bool[src]

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.

C++ documentation:

Compares this entity declaration with other and returns true if they are equal; otherwise returns false.

impl CppDeletable for QXmlStreamEntityDeclaration[src]

unsafe fn delete(&mut self)[src]

Destructs this entity declaration.

Calls C++ function: [destructor] void QXmlStreamEntityDeclaration::~QXmlStreamEntityDeclaration().

C++ documentation:

Destructs this entity declaration.

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]