pub enum WebDomainException {
WebDomainException(WebDomainException),
}Expand description
Variants§
WebDomainException(WebDomainException)
Trait Implementations§
Source§impl Clone for WebDomainException
impl Clone for WebDomainException
Source§fn clone(&self) -> WebDomainException
fn clone(&self) -> WebDomainException
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebDomainException
impl Debug for WebDomainException
Source§impl Deserializable for WebDomainException
impl Deserializable for WebDomainException
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<WebDomainException> for WebDomainException
impl From<WebDomainException> for WebDomainException
Source§fn from(x: WebDomainException) -> Self
fn from(x: WebDomainException) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WebDomainException
impl PartialEq for WebDomainException
Source§fn eq(&self, other: &WebDomainException) -> bool
fn eq(&self, other: &WebDomainException) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serializable for WebDomainException
impl Serializable for WebDomainException
impl StructuralPartialEq for WebDomainException
Source§impl TryFrom<WebDomainException> for WebDomainException
impl TryFrom<WebDomainException> for WebDomainException
Source§type Error = WebDomainException
type Error = WebDomainException
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for WebDomainException
impl RefUnwindSafe for WebDomainException
impl Send for WebDomainException
impl Sync for WebDomainException
impl Unpin for WebDomainException
impl UnsafeUnpin for WebDomainException
impl UnwindSafe for WebDomainException
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