Struct google_jobs3::ProcessingOptions[][src]

pub struct ProcessingOptions {
    pub html_sanitization: Option<String>,
    pub disable_street_address_resolution: Option<bool>,
}

Input only.

Options for job processing.

This type is not used in any activity, and only used as part of another schema.

Fields

Optional.

Option for job HTML content sanitization. Applied fields are:

  • description
  • applicationInfo.instruction
  • incentives
  • qualifications
  • responsibilities

HTML tags in these fields may be stripped if sanitiazation is not disabled.

Defaults to HtmlSanitization.SIMPLE_FORMATTING_ONLY.

Optional.

If set to true, the service does not attempt to resolve a more precise address for the job.

Trait Implementations

impl Default for ProcessingOptions
[src]

Returns the "default value" for a type. Read more

impl Clone for ProcessingOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProcessingOptions
[src]

Formats the value using the given formatter. Read more

impl Part for ProcessingOptions
[src]

Auto Trait Implementations