pub struct NotFoundDTO {
pub status_code: Option<f64>,
pub message: Option<String>,
pub error: Option<String>,
}Available on crate feature
emails only.Expand description
NotFoundDTO from the GoHighLevel OpenAPI spec.
Fields§
§status_code: Option<f64>HTTP status code for not found
message: Option<String>Error message describing the not found failure
error: Option<String>Error type identifier
Trait Implementations§
Source§impl Clone for NotFoundDTO
impl Clone for NotFoundDTO
Source§fn clone(&self) -> NotFoundDTO
fn clone(&self) -> NotFoundDTO
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 NotFoundDTO
impl Debug for NotFoundDTO
Source§impl Default for NotFoundDTO
impl Default for NotFoundDTO
Source§fn default() -> NotFoundDTO
fn default() -> NotFoundDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotFoundDTO
impl<'de> Deserialize<'de> for NotFoundDTO
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 NotFoundDTO
impl RefUnwindSafe for NotFoundDTO
impl Send for NotFoundDTO
impl Sync for NotFoundDTO
impl Unpin for NotFoundDTO
impl UnsafeUnpin for NotFoundDTO
impl UnwindSafe for NotFoundDTO
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