pub struct ErrorDetailsDTO {
pub stack: Option<String>,
pub response: Option<String>,
pub status: Option<f64>,
pub options: Option<Value>,
pub message: Option<String>,
pub name: Option<String>,
}Available on crate feature
knowledge-base only.Expand description
ErrorDetailsDTO from the GoHighLevel OpenAPI spec.
Fields§
§stack: Option<String>Error stack trace Required by the API. (Optional here so responses that omit it still parse.)
response: Option<String>Error response message Required by the API. (Optional here so responses that omit it still parse.)
status: Option<f64>HTTP status code Required by the API. (Optional here so responses that omit it still parse.)
options: Option<Value>Additional options (nullable)
message: Option<String>Error message Required by the API. (Optional here so responses that omit it still parse.)
name: Option<String>Error name/type Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for ErrorDetailsDTO
impl Clone for ErrorDetailsDTO
Source§fn clone(&self) -> ErrorDetailsDTO
fn clone(&self) -> ErrorDetailsDTO
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 ErrorDetailsDTO
impl Debug for ErrorDetailsDTO
Source§impl Default for ErrorDetailsDTO
impl Default for ErrorDetailsDTO
Source§fn default() -> ErrorDetailsDTO
fn default() -> ErrorDetailsDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ErrorDetailsDTO
impl<'de> Deserialize<'de> for ErrorDetailsDTO
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 ErrorDetailsDTO
impl RefUnwindSafe for ErrorDetailsDTO
impl Send for ErrorDetailsDTO
impl Sync for ErrorDetailsDTO
impl Unpin for ErrorDetailsDTO
impl UnsafeUnpin for ErrorDetailsDTO
impl UnwindSafe for ErrorDetailsDTO
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