[][src]Struct qt_core::QXmlStreamNotationDeclaration

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

The QXmlStreamNotationDeclaration class represents a DTD notation declaration.

C++ class: QXmlStreamNotationDeclaration.

C++ documentation:

The QXmlStreamNotationDeclaration class represents a DTD notation declaration.

An notation declaration consists of a name(), a systemId(), and a publicId().

Methods

impl QXmlStreamNotationDeclaration[src]

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

Assigns other to this notation declaration.

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

C++ documentation:

Assigns other to this notation declaration.

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

Returns the notation name.

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

C++ documentation:

Returns the notation name.

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

Creates an empty notation declaration.

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

C++ documentation:

Creates an empty notation declaration.

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

Creates a copy of other.

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

C++ documentation:

Creates a copy of other.

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

Returns the public identifier.

Calls C++ function: QStringRef QXmlStreamNotationDeclaration::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 QXmlStreamNotationDeclaration::systemId() const.

C++ documentation:

Returns the system identifier.

Trait Implementations

impl CppDeletable for QXmlStreamNotationDeclaration[src]

unsafe fn delete(&self)[src]

Destructs this notation declaration.

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

C++ documentation:

Destructs this notation declaration.

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

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

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

Calls C++ function: bool QXmlStreamNotationDeclaration::operator==(const QXmlStreamNotationDeclaration& other) const.

C++ documentation:

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

Auto Trait Implementations

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, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

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

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

impl<T> StaticUpcast<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.