pub enum WebViewResult {
Url(WebViewResultUrl),
}Expand description
Variants§
Url(WebViewResultUrl)
Trait Implementations§
Source§impl Clone for WebViewResult
impl Clone for WebViewResult
Source§fn clone(&self) -> WebViewResult
fn clone(&self) -> WebViewResult
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 WebViewResult
impl Debug for WebViewResult
Source§impl Deserializable for WebViewResult
impl Deserializable for WebViewResult
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<WebViewResultUrl> for WebViewResult
impl From<WebViewResultUrl> for WebViewResult
Source§fn from(x: WebViewResultUrl) -> Self
fn from(x: WebViewResultUrl) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WebViewResult
impl PartialEq for WebViewResult
Source§impl Serializable for WebViewResult
impl Serializable for WebViewResult
Source§impl TryFrom<WebViewResult> for WebViewResultUrl
impl TryFrom<WebViewResult> for WebViewResultUrl
Source§type Error = WebViewResult
type Error = WebViewResult
The type returned in the event of a conversion error.
impl StructuralPartialEq for WebViewResult
Auto Trait Implementations§
impl Freeze for WebViewResult
impl RefUnwindSafe for WebViewResult
impl Send for WebViewResult
impl Sync for WebViewResult
impl Unpin for WebViewResult
impl UnsafeUnpin for WebViewResult
impl UnwindSafe for WebViewResult
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