pub struct PlayerErrorsRaised {
pub method: PlayerErrorsRaisedMethod,
pub params: PlayerErrorsRaisedParams,
}Expand description
Send a list of any errors that need to be delivered. playerErrorsRaised
Fields§
§method: PlayerErrorsRaisedMethod§params: PlayerErrorsRaisedParamsImplementations§
Source§impl PlayerErrorsRaised
impl PlayerErrorsRaised
pub const IDENTIFIER: &'static str = "Media.playerErrorsRaised"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PlayerErrorsRaised
impl Clone for PlayerErrorsRaised
Source§fn clone(&self) -> PlayerErrorsRaised
fn clone(&self) -> PlayerErrorsRaised
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 PlayerErrorsRaised
impl Debug for PlayerErrorsRaised
Source§impl<'de> Deserialize<'de> for PlayerErrorsRaised
impl<'de> Deserialize<'de> for PlayerErrorsRaised
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<PlayerErrorsRaised> for BrowserProtocolEvents
impl From<PlayerErrorsRaised> for BrowserProtocolEvents
Source§fn from(v: PlayerErrorsRaised) -> Self
fn from(v: PlayerErrorsRaised) -> Self
Converts to this type from the input type.
Source§impl From<PlayerErrorsRaised> for Event
impl From<PlayerErrorsRaised> for Event
Source§fn from(v: PlayerErrorsRaised) -> Self
fn from(v: PlayerErrorsRaised) -> Self
Converts to this type from the input type.
Source§impl From<PlayerErrorsRaised> for MediaEvents
impl From<PlayerErrorsRaised> for MediaEvents
Source§fn from(v: PlayerErrorsRaised) -> Self
fn from(v: PlayerErrorsRaised) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlayerErrorsRaised
impl PartialEq for PlayerErrorsRaised
Source§impl Serialize for PlayerErrorsRaised
impl Serialize for PlayerErrorsRaised
Source§impl TryFrom<BrowserProtocolEvents> for PlayerErrorsRaised
impl TryFrom<BrowserProtocolEvents> for PlayerErrorsRaised
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, <PlayerErrorsRaised as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <PlayerErrorsRaised as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for PlayerErrorsRaised
impl TryFrom<Event> for PlayerErrorsRaised
Source§impl TryFrom<MediaEvents> for PlayerErrorsRaised
impl TryFrom<MediaEvents> for PlayerErrorsRaised
Source§type Error = MediaEvents
type Error = MediaEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: MediaEvents,
) -> Result<Self, <PlayerErrorsRaised as TryFrom<MediaEvents>>::Error>
fn try_from( e: MediaEvents, ) -> Result<Self, <PlayerErrorsRaised as TryFrom<MediaEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for PlayerErrorsRaised
Auto Trait Implementations§
impl Freeze for PlayerErrorsRaised
impl RefUnwindSafe for PlayerErrorsRaised
impl Send for PlayerErrorsRaised
impl Sync for PlayerErrorsRaised
impl Unpin for PlayerErrorsRaised
impl UnsafeUnpin for PlayerErrorsRaised
impl UnwindSafe for PlayerErrorsRaised
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