pub struct QuickTunnelApiError {
pub code: i32,
pub message: String,
}Expand description
Business-level error returned inside the API response body when
success = false. Mirrors cloudflared’s QuickTunnelError.
Fields§
§code: i32§message: StringTrait Implementations§
Source§impl Clone for QuickTunnelApiError
impl Clone for QuickTunnelApiError
Source§fn clone(&self) -> QuickTunnelApiError
fn clone(&self) -> QuickTunnelApiError
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 QuickTunnelApiError
impl Debug for QuickTunnelApiError
Source§impl<'de> Deserialize<'de> for QuickTunnelApiError
impl<'de> Deserialize<'de> for QuickTunnelApiError
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 QuickTunnelApiError
impl RefUnwindSafe for QuickTunnelApiError
impl Send for QuickTunnelApiError
impl Sync for QuickTunnelApiError
impl Unpin for QuickTunnelApiError
impl UnsafeUnpin for QuickTunnelApiError
impl UnwindSafe for QuickTunnelApiError
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