pub struct IssueUpdated {
pub method: IssueUpdatedMethod,
pub params: IssueUpdatedParams,
}Expand description
This is fired whenever the outstanding issue/error message changes. |issueMessage| is empty if there is no issue. issueUpdated
Fields§
§method: IssueUpdatedMethod§params: IssueUpdatedParamsImplementations§
Source§impl IssueUpdated
impl IssueUpdated
pub const IDENTIFIER: &'static str = "Cast.issueUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for IssueUpdated
impl Clone for IssueUpdated
Source§fn clone(&self) -> IssueUpdated
fn clone(&self) -> IssueUpdated
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 IssueUpdated
impl Debug for IssueUpdated
Source§impl<'de> Deserialize<'de> for IssueUpdated
impl<'de> Deserialize<'de> for IssueUpdated
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<IssueUpdated> for BrowserProtocolEvents
impl From<IssueUpdated> for BrowserProtocolEvents
Source§fn from(v: IssueUpdated) -> Self
fn from(v: IssueUpdated) -> Self
Converts to this type from the input type.
Source§impl From<IssueUpdated> for CastEvents
impl From<IssueUpdated> for CastEvents
Source§fn from(v: IssueUpdated) -> Self
fn from(v: IssueUpdated) -> Self
Converts to this type from the input type.
Source§impl From<IssueUpdated> for Event
impl From<IssueUpdated> for Event
Source§fn from(v: IssueUpdated) -> Self
fn from(v: IssueUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IssueUpdated
impl PartialEq for IssueUpdated
Source§impl Serialize for IssueUpdated
impl Serialize for IssueUpdated
Source§impl TryFrom<BrowserProtocolEvents> for IssueUpdated
impl TryFrom<BrowserProtocolEvents> for IssueUpdated
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, <IssueUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <IssueUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<CastEvents> for IssueUpdated
impl TryFrom<CastEvents> for IssueUpdated
Source§type Error = CastEvents
type Error = CastEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: CastEvents,
) -> Result<Self, <IssueUpdated as TryFrom<CastEvents>>::Error>
fn try_from( e: CastEvents, ) -> Result<Self, <IssueUpdated as TryFrom<CastEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for IssueUpdated
impl TryFrom<Event> for IssueUpdated
impl StructuralPartialEq for IssueUpdated
Auto Trait Implementations§
impl Freeze for IssueUpdated
impl RefUnwindSafe for IssueUpdated
impl Send for IssueUpdated
impl Sync for IssueUpdated
impl Unpin for IssueUpdated
impl UnsafeUnpin for IssueUpdated
impl UnwindSafe for IssueUpdated
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