pub struct SetCacheDisabled {
pub method: SetCacheDisabledMethod,
pub params: SetCacheDisabledParams,
}Expand description
Toggles ignoring cache for each request. If true, cache will not be used.
setCacheDisabled
Fields§
§method: SetCacheDisabledMethod§params: SetCacheDisabledParamsImplementations§
Source§impl SetCacheDisabled
impl SetCacheDisabled
pub fn builder() -> SetCacheDisabledBuilder
Source§impl SetCacheDisabled
impl SetCacheDisabled
pub const IDENTIFIER: &'static str = "Network.setCacheDisabled"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetCacheDisabled
impl Clone for SetCacheDisabled
Source§fn clone(&self) -> SetCacheDisabled
fn clone(&self) -> SetCacheDisabled
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 CommandResult for SetCacheDisabled
impl CommandResult for SetCacheDisabled
type Result = SetCacheDisabledResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetCacheDisabled
impl Debug for SetCacheDisabled
Source§impl<'de> Deserialize<'de> for SetCacheDisabled
impl<'de> Deserialize<'de> for SetCacheDisabled
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<SetCacheDisabled> for BrowserProtocolCommands
impl From<SetCacheDisabled> for BrowserProtocolCommands
Source§fn from(v: SetCacheDisabled) -> Self
fn from(v: SetCacheDisabled) -> Self
Converts to this type from the input type.
Source§impl From<SetCacheDisabled> for Command
impl From<SetCacheDisabled> for Command
Source§fn from(v: SetCacheDisabled) -> Self
fn from(v: SetCacheDisabled) -> Self
Converts to this type from the input type.
Source§impl From<SetCacheDisabled> for NetworkCommands
impl From<SetCacheDisabled> for NetworkCommands
Source§fn from(v: SetCacheDisabled) -> Self
fn from(v: SetCacheDisabled) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetCacheDisabled
impl PartialEq for SetCacheDisabled
Source§impl Serialize for SetCacheDisabled
impl Serialize for SetCacheDisabled
Source§impl TryFrom<BrowserProtocolCommands> for SetCacheDisabled
impl TryFrom<BrowserProtocolCommands> for SetCacheDisabled
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetCacheDisabled as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetCacheDisabled as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetCacheDisabled
impl TryFrom<Command> for SetCacheDisabled
Source§impl TryFrom<NetworkCommands> for SetCacheDisabled
impl TryFrom<NetworkCommands> for SetCacheDisabled
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <SetCacheDisabled as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <SetCacheDisabled as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetCacheDisabled
Auto Trait Implementations§
impl Freeze for SetCacheDisabled
impl RefUnwindSafe for SetCacheDisabled
impl Send for SetCacheDisabled
impl Sync for SetCacheDisabled
impl Unpin for SetCacheDisabled
impl UnsafeUnpin for SetCacheDisabled
impl UnwindSafe for SetCacheDisabled
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