[][src]Struct qt_core::QJsonParseError

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

The QJsonParseError class is used to report errors during JSON parsing.

C++ class: QJsonParseError.

C++ documentation:

The QJsonParseError class is used to report errors during JSON parsing.

Methods

impl QJsonParseError[src]

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

The QJsonParseError class is used to report errors during JSON parsing.

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

C++ documentation:

The QJsonParseError class is used to report errors during JSON parsing.

pub unsafe fn error(&self) -> ParseError[src]

Returns the value of the error field.

pub unsafe fn error_string(&self) -> CppBox<QString>[src]

Returns the human-readable message appropriate to the reported JSON parsing error.

Calls C++ function: QString QJsonParseError::errorString() const.

C++ documentation:

Returns the human-readable message appropriate to the reported JSON parsing error.

See also error.

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

The QJsonParseError class is used to report errors during JSON parsing.

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

C++ documentation:

The QJsonParseError class is used to report errors during JSON parsing.

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

The QJsonParseError class is used to report errors during JSON parsing.

Calls C++ function: [constructor] void QJsonParseError::QJsonParseError(const QJsonParseError& other).

C++ documentation:

The QJsonParseError class is used to report errors during JSON parsing.

pub unsafe fn offset(&self) -> c_int[src]

Returns the value of the offset field.

pub unsafe fn set_error(&mut self, value: ParseError)[src]

Sets the value of the error field.

pub unsafe fn set_offset(&mut self, value: c_int)[src]

Sets the value of the offset field.

Trait Implementations

impl CppDeletable for QJsonParseError[src]

unsafe fn delete(&mut self)[src]

The QJsonParseError class is used to report errors during JSON parsing.

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

C++ documentation:

The QJsonParseError class is used to report errors during JSON parsing.

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]