pub struct CrashGpuProcess {
pub method: CrashGpuProcessMethod,
pub params: CrashGpuProcessParams,
}Expand description
Crashes GPU process. crashGpuProcess
Fields§
§method: CrashGpuProcessMethod§params: CrashGpuProcessParamsImplementations§
Source§impl CrashGpuProcess
impl CrashGpuProcess
pub fn builder() -> CrashGpuProcessBuilder
Source§impl CrashGpuProcess
impl CrashGpuProcess
pub const IDENTIFIER: &'static str = "Browser.crashGpuProcess"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CrashGpuProcess
impl Clone for CrashGpuProcess
Source§fn clone(&self) -> CrashGpuProcess
fn clone(&self) -> CrashGpuProcess
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 CrashGpuProcess
impl CommandResult for CrashGpuProcess
type Result = CrashGpuProcessResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CrashGpuProcess
impl Debug for CrashGpuProcess
Source§impl<'de> Deserialize<'de> for CrashGpuProcess
impl<'de> Deserialize<'de> for CrashGpuProcess
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<CrashGpuProcess> for BrowserCommands
impl From<CrashGpuProcess> for BrowserCommands
Source§fn from(v: CrashGpuProcess) -> Self
fn from(v: CrashGpuProcess) -> Self
Converts to this type from the input type.
Source§impl From<CrashGpuProcess> for BrowserProtocolCommands
impl From<CrashGpuProcess> for BrowserProtocolCommands
Source§fn from(v: CrashGpuProcess) -> Self
fn from(v: CrashGpuProcess) -> Self
Converts to this type from the input type.
Source§impl From<CrashGpuProcess> for Command
impl From<CrashGpuProcess> for Command
Source§fn from(v: CrashGpuProcess) -> Self
fn from(v: CrashGpuProcess) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CrashGpuProcess
impl PartialEq for CrashGpuProcess
Source§impl Serialize for CrashGpuProcess
impl Serialize for CrashGpuProcess
Source§impl TryFrom<BrowserCommands> for CrashGpuProcess
impl TryFrom<BrowserCommands> for CrashGpuProcess
Source§type Error = BrowserCommands
type Error = BrowserCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserCommands,
) -> Result<Self, <CrashGpuProcess as TryFrom<BrowserCommands>>::Error>
fn try_from( e: BrowserCommands, ) -> Result<Self, <CrashGpuProcess as TryFrom<BrowserCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for CrashGpuProcess
impl TryFrom<BrowserProtocolCommands> for CrashGpuProcess
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, <CrashGpuProcess as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CrashGpuProcess as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for CrashGpuProcess
impl TryFrom<Command> for CrashGpuProcess
impl StructuralPartialEq for CrashGpuProcess
Auto Trait Implementations§
impl Freeze for CrashGpuProcess
impl RefUnwindSafe for CrashGpuProcess
impl Send for CrashGpuProcess
impl Sync for CrashGpuProcess
impl Unpin for CrashGpuProcess
impl UnsafeUnpin for CrashGpuProcess
impl UnwindSafe for CrashGpuProcess
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