pub struct ResourceChangedPriority {
pub method: ResourceChangedPriorityMethod,
pub params: ResourceChangedPriorityParams,
}Expand description
Fired when resource loading priority is changed resourceChangedPriority
Fields§
§method: ResourceChangedPriorityMethod§params: ResourceChangedPriorityParamsImplementations§
Source§impl ResourceChangedPriority
impl ResourceChangedPriority
pub const IDENTIFIER: &'static str = "Network.resourceChangedPriority"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ResourceChangedPriority
impl Clone for ResourceChangedPriority
Source§fn clone(&self) -> ResourceChangedPriority
fn clone(&self) -> ResourceChangedPriority
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResourceChangedPriority
impl Debug for ResourceChangedPriority
Source§impl<'de> Deserialize<'de> for ResourceChangedPriority
impl<'de> Deserialize<'de> for ResourceChangedPriority
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ResourceChangedPriority> for BrowserProtocolEvents
impl From<ResourceChangedPriority> for BrowserProtocolEvents
Source§fn from(v: ResourceChangedPriority) -> Self
fn from(v: ResourceChangedPriority) -> Self
Converts to this type from the input type.
Source§impl From<ResourceChangedPriority> for Event
impl From<ResourceChangedPriority> for Event
Source§fn from(v: ResourceChangedPriority) -> Self
fn from(v: ResourceChangedPriority) -> Self
Converts to this type from the input type.
Source§impl From<ResourceChangedPriority> for NetworkEvents
impl From<ResourceChangedPriority> for NetworkEvents
Source§fn from(v: ResourceChangedPriority) -> Self
fn from(v: ResourceChangedPriority) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResourceChangedPriority
impl PartialEq for ResourceChangedPriority
Source§impl Serialize for ResourceChangedPriority
impl Serialize for ResourceChangedPriority
Source§impl TryFrom<BrowserProtocolEvents> for ResourceChangedPriority
impl TryFrom<BrowserProtocolEvents> for ResourceChangedPriority
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <ResourceChangedPriority as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <ResourceChangedPriority as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ResourceChangedPriority
impl TryFrom<Event> for ResourceChangedPriority
Source§impl TryFrom<NetworkEvents> for ResourceChangedPriority
impl TryFrom<NetworkEvents> for ResourceChangedPriority
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <ResourceChangedPriority as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <ResourceChangedPriority as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ResourceChangedPriority
Auto Trait Implementations§
impl Freeze for ResourceChangedPriority
impl RefUnwindSafe for ResourceChangedPriority
impl Send for ResourceChangedPriority
impl Sync for ResourceChangedPriority
impl Unpin for ResourceChangedPriority
impl UnsafeUnpin for ResourceChangedPriority
impl UnwindSafe for ResourceChangedPriority
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more