pub enum TestSiteUrlError {
Status400(AppError),
Status403(AppError),
Status500(AppError),
UnknownValue(Value),
}
Expand description
struct for typed errors of method test_site_url
Variants§
Trait Implementations§
Source§impl Clone for TestSiteUrlError
impl Clone for TestSiteUrlError
Source§fn clone(&self) -> TestSiteUrlError
fn clone(&self) -> TestSiteUrlError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TestSiteUrlError
impl Debug for TestSiteUrlError
Source§impl<'de> Deserialize<'de> for TestSiteUrlError
impl<'de> Deserialize<'de> for TestSiteUrlError
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
Auto Trait Implementations§
impl Freeze for TestSiteUrlError
impl RefUnwindSafe for TestSiteUrlError
impl Send for TestSiteUrlError
impl Sync for TestSiteUrlError
impl Unpin for TestSiteUrlError
impl UnwindSafe for TestSiteUrlError
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