pub struct ScreencastVisibilityChanged {
pub method: ScreencastVisibilityChangedMethod,
pub params: ScreencastVisibilityChangedParams,
}Expand description
Fired when the page with currently enabled screencast was shown or hidden `. screencastVisibilityChanged
Fields§
§method: ScreencastVisibilityChangedMethod§params: ScreencastVisibilityChangedParamsImplementations§
Source§impl ScreencastVisibilityChanged
impl ScreencastVisibilityChanged
pub const IDENTIFIER: &'static str = "Page.screencastVisibilityChanged"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ScreencastVisibilityChanged
impl Clone for ScreencastVisibilityChanged
Source§fn clone(&self) -> ScreencastVisibilityChanged
fn clone(&self) -> ScreencastVisibilityChanged
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 ScreencastVisibilityChanged
impl Debug for ScreencastVisibilityChanged
Source§impl<'de> Deserialize<'de> for ScreencastVisibilityChanged
impl<'de> Deserialize<'de> for ScreencastVisibilityChanged
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<ScreencastVisibilityChanged> for BrowserProtocolEvents
impl From<ScreencastVisibilityChanged> for BrowserProtocolEvents
Source§fn from(v: ScreencastVisibilityChanged) -> Self
fn from(v: ScreencastVisibilityChanged) -> Self
Converts to this type from the input type.
Source§impl From<ScreencastVisibilityChanged> for Event
impl From<ScreencastVisibilityChanged> for Event
Source§fn from(v: ScreencastVisibilityChanged) -> Self
fn from(v: ScreencastVisibilityChanged) -> Self
Converts to this type from the input type.
Source§impl From<ScreencastVisibilityChanged> for PageEvents
impl From<ScreencastVisibilityChanged> for PageEvents
Source§fn from(v: ScreencastVisibilityChanged) -> Self
fn from(v: ScreencastVisibilityChanged) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for ScreencastVisibilityChanged
impl TryFrom<BrowserProtocolEvents> for ScreencastVisibilityChanged
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, <ScreencastVisibilityChanged as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <ScreencastVisibilityChanged as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ScreencastVisibilityChanged
impl TryFrom<Event> for ScreencastVisibilityChanged
Source§impl TryFrom<PageEvents> for ScreencastVisibilityChanged
impl TryFrom<PageEvents> for ScreencastVisibilityChanged
Source§type Error = PageEvents
type Error = PageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageEvents,
) -> Result<Self, <ScreencastVisibilityChanged as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <ScreencastVisibilityChanged as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ScreencastVisibilityChanged
Auto Trait Implementations§
impl Freeze for ScreencastVisibilityChanged
impl RefUnwindSafe for ScreencastVisibilityChanged
impl Send for ScreencastVisibilityChanged
impl Sync for ScreencastVisibilityChanged
impl Unpin for ScreencastVisibilityChanged
impl UnsafeUnpin for ScreencastVisibilityChanged
impl UnwindSafe for ScreencastVisibilityChanged
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