pub struct NotFoundException {
pub status_code: Option<i32>,
pub message: Option<String>,
pub error: Option<String>,
}
Fields§
§status_code: Option<i32>
HTTP status code
message: Option<String>
Error message
error: Option<String>
Short description of the HTTP error
Implementations§
Source§impl NotFoundException
impl NotFoundException
pub fn new() -> NotFoundException
Trait Implementations§
Source§impl Clone for NotFoundException
impl Clone for NotFoundException
Source§fn clone(&self) -> NotFoundException
fn clone(&self) -> NotFoundException
Returns a copy of the value. Read more
1.0.0 · 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 NotFoundException
impl Debug for NotFoundException
Source§impl Default for NotFoundException
impl Default for NotFoundException
Source§fn default() -> NotFoundException
fn default() -> NotFoundException
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotFoundException
impl<'de> Deserialize<'de> for NotFoundException
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
Source§impl PartialEq for NotFoundException
impl PartialEq for NotFoundException
Source§impl Serialize for NotFoundException
impl Serialize for NotFoundException
impl StructuralPartialEq for NotFoundException
Auto Trait Implementations§
impl Freeze for NotFoundException
impl RefUnwindSafe for NotFoundException
impl Send for NotFoundException
impl Sync for NotFoundException
impl Unpin for NotFoundException
impl UnwindSafe for NotFoundException
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