pub struct AssetAlreadyExistHttpError {
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 AssetAlreadyExistHttpError
impl AssetAlreadyExistHttpError
pub fn new() -> AssetAlreadyExistHttpError
Trait Implementations§
Source§impl Clone for AssetAlreadyExistHttpError
impl Clone for AssetAlreadyExistHttpError
Source§fn clone(&self) -> AssetAlreadyExistHttpError
fn clone(&self) -> AssetAlreadyExistHttpError
Returns a duplicate 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 AssetAlreadyExistHttpError
impl Debug for AssetAlreadyExistHttpError
Source§impl Default for AssetAlreadyExistHttpError
impl Default for AssetAlreadyExistHttpError
Source§fn default() -> AssetAlreadyExistHttpError
fn default() -> AssetAlreadyExistHttpError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetAlreadyExistHttpError
impl<'de> Deserialize<'de> for AssetAlreadyExistHttpError
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
impl StructuralPartialEq for AssetAlreadyExistHttpError
Auto Trait Implementations§
impl Freeze for AssetAlreadyExistHttpError
impl RefUnwindSafe for AssetAlreadyExistHttpError
impl Send for AssetAlreadyExistHttpError
impl Sync for AssetAlreadyExistHttpError
impl Unpin for AssetAlreadyExistHttpError
impl UnwindSafe for AssetAlreadyExistHttpError
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