[−][src]Struct qt_core::q_json_document::DataValidation
This value is used to tell QJsonDocument whether to validate the binary data when converting to a QJsonDocument using fromBinaryData() or fromRawData().
C++ enum: QJsonDocument::DataValidation.
This value is used to tell QJsonDocument whether to validate the binary data when converting to a QJsonDocument using fromBinaryData() or fromRawData().
Methods
impl DataValidation[src]
impl DataValidation[src]
pub const Validate: DataValidation[src]
Validate the data before using it. This is the default. (C++ enum variant: Validate = 0)
pub const BypassValidation: DataValidation[src]
Bypasses data validation. Only use if you received the data from a trusted place and know it's valid, as using of invalid data can crash the application. (C++ enum variant: BypassValidation = 1)
Trait Implementations
impl Clone for DataValidation[src]
fn clone(&self) -> DataValidation[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for DataValidation[src]
impl Debug for DataValidation[src]
impl Eq for DataValidation[src]
impl From<DataValidation> for c_int[src]
fn from(value: DataValidation) -> Self[src]
impl From<i32> for DataValidation[src]
impl PartialEq<DataValidation> for DataValidation[src]
fn eq(&self, other: &DataValidation) -> bool[src]
fn ne(&self, other: &DataValidation) -> bool[src]
impl StructuralEq for DataValidation[src]
impl StructuralPartialEq for DataValidation[src]
Auto Trait Implementations
impl RefUnwindSafe for DataValidation
impl Send for DataValidation
impl Sync for DataValidation
impl Unpin for DataValidation
impl UnwindSafe for DataValidation
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> CastInto<U> for T where
U: CastFrom<T>, [src]
U: CastFrom<T>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> StaticUpcast<T> for T[src]
unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>[src]
unsafe fn static_upcast_mut(ptr: MutPtr<T>) -> MutPtr<T>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,