pub struct AssetException {
pub details: Option<String>,
pub exception_type: Option<String>,
}Expand description
An exception of an asset.
This type is not used in any activity, and only used as part of another schema.
Fields§
§details: Option<String>The details of the exception.
exception_type: Option<String>The type of exception.
Trait Implementations§
Source§impl Clone for AssetException
impl Clone for AssetException
Source§fn clone(&self) -> AssetException
fn clone(&self) -> AssetException
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 AssetException
impl Debug for AssetException
Source§impl Default for AssetException
impl Default for AssetException
Source§fn default() -> AssetException
fn default() -> AssetException
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetException
impl<'de> Deserialize<'de> for AssetException
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 Serialize for AssetException
impl Serialize for AssetException
impl Part for AssetException
Auto Trait Implementations§
impl Freeze for AssetException
impl RefUnwindSafe for AssetException
impl Send for AssetException
impl Sync for AssetException
impl Unpin for AssetException
impl UnwindSafe for AssetException
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