Struct google_chromeuxreport1::api::UrlNormalization[][src]

pub struct UrlNormalization {
    pub normalized_url: Option<String>,
    pub original_url: Option<String>,
}

Object representing the normalization actions taken to normalize a url to achieve a higher chance of successful lookup. These are simple automated changes that are taken when looking up the provided url_patten would be known to fail. Complex actions like following redirects are not handled.

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

Fields

normalized_url: Option<String>

The URL after any normalization actions. This is a valid user experience URL that could reasonably be looked up.

original_url: Option<String>

The original requested URL prior to any normalization actions.

Trait Implementations

impl Clone for UrlNormalization[src]

impl Debug for UrlNormalization[src]

impl Default for UrlNormalization[src]

impl<'de> Deserialize<'de> for UrlNormalization[src]

impl Part for UrlNormalization[src]

impl Serialize for UrlNormalization[src]

Auto Trait Implementations

impl RefUnwindSafe for UrlNormalization[src]

impl Send for UrlNormalization[src]

impl Sync for UrlNormalization[src]

impl Unpin for UrlNormalization[src]

impl UnwindSafe for UrlNormalization[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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, 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.