pub enum WebViewMessageSent {
WebViewMessageSent(WebViewMessageSent),
}Expand description
Variants§
WebViewMessageSent(WebViewMessageSent)
Trait Implementations§
Source§impl Clone for WebViewMessageSent
impl Clone for WebViewMessageSent
Source§fn clone(&self) -> WebViewMessageSent
fn clone(&self) -> WebViewMessageSent
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 WebViewMessageSent
impl Debug for WebViewMessageSent
Source§impl Deserializable for WebViewMessageSent
impl Deserializable for WebViewMessageSent
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<WebViewMessageSent> for WebViewMessageSent
impl From<WebViewMessageSent> for WebViewMessageSent
Source§fn from(x: WebViewMessageSent) -> Self
fn from(x: WebViewMessageSent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WebViewMessageSent
impl PartialEq for WebViewMessageSent
Source§impl Serializable for WebViewMessageSent
impl Serializable for WebViewMessageSent
Source§impl TryFrom<WebViewMessageSent> for WebViewMessageSent
impl TryFrom<WebViewMessageSent> for WebViewMessageSent
Source§type Error = WebViewMessageSent
type Error = WebViewMessageSent
The type returned in the event of a conversion error.
impl StructuralPartialEq for WebViewMessageSent
Auto Trait Implementations§
impl Freeze for WebViewMessageSent
impl RefUnwindSafe for WebViewMessageSent
impl Send for WebViewMessageSent
impl Sync for WebViewMessageSent
impl Unpin for WebViewMessageSent
impl UnsafeUnpin for WebViewMessageSent
impl UnwindSafe for WebViewMessageSent
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