pub struct ErrorDetailsDTO {
pub stack: String,
pub response: String,
pub status: f64,
pub options: Option<Value>,
pub message: String,
pub name: String,
}Available on crate feature
knowledge-base only.Expand description
ErrorDetailsDTO from the GoHighLevel OpenAPI spec.
Fields§
§stack: StringError stack trace Required by the API.
response: StringError response message Required by the API.
status: f64HTTP status code Required by the API.
options: Option<Value>Additional options (nullable)
message: StringError message Required by the API.
name: StringError name/type Required by the API.
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