[][src]Struct json_ld::context::ProcessingOptions

pub struct ProcessingOptions {
    pub processing_mode: ProcessingMode,
    pub override_protected: bool,
    pub propagate: bool,
}

Fields

processing_mode: ProcessingMode

The processing mode

override_protected: bool

Override protected definitions.

propagate: bool

Propagate the processed context.

Methods

impl ProcessingOptions[src]

pub fn with_override(&self) -> ProcessingOptions[src]

Return the same set of options, but with override_protected set to true.

pub fn with_no_override(&self) -> ProcessingOptions[src]

Return the same set of options, but with override_protected set to false.

pub fn without_propagation(&self) -> ProcessingOptions[src]

Return the same set of options, but with propagate set to false.

Trait Implementations

impl Clone for ProcessingOptions[src]

impl Copy for ProcessingOptions[src]

impl Default for ProcessingOptions[src]

impl Eq for ProcessingOptions[src]

impl From<Options> for ProcessingOptions[src]

impl PartialEq<ProcessingOptions> for ProcessingOptions[src]

impl StructuralEq for ProcessingOptions[src]

impl StructuralPartialEq for ProcessingOptions[src]

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToOwned for T[src]

type Owned = T

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.