pub struct ChangeInfo {
    pub audible: Option<bool>,
    pub auto_discardable: Option<bool>,
    pub discarded: Option<bool>,
    pub fav_icon_url: Option<String>,
    pub group_id: Option<i32>,
    pub muted_info: Option<MutedInfo>,
    pub pinned: Option<bool>,
    pub status: Option<Status>,
    pub title: Option<String>,
    pub url: Option<String>,
}
Expand description

Fields

audible: Option<bool>

The tab’s new audible state.

auto_discardable: Option<bool>

The tab’s new auto-discardable state.

discarded: Option<bool>

The tab’s new discarded state.

fav_icon_url: Option<String>

The tab’s new favicon URL.

group_id: Option<i32>

The tab’s new group.

muted_info: Option<MutedInfo>

The tab’s new muted state and the reason for the change.

pinned: Option<bool>

The tab’s new pinned state.

status: Option<Status>

The tab’s loading status.

title: Option<String>

The tab’s new title.

url: Option<String>

The tab’s URL if it has changed.

Trait Implementations

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.