pub struct ExceptionType {
pub name: String,
pub prefix: String,
pub values: Vec<ExceptionTypeItems>,
}Expand description
Representation of the
Fields§
§name: StringThe name of the exception
prefix: StringThe prefix of the exception
values: Vec<ExceptionTypeItems>Vector of possible values
Trait Implementations§
Source§impl Debug for ExceptionType
impl Debug for ExceptionType
Source§impl<'de> Deserialize<'de> for ExceptionType
impl<'de> Deserialize<'de> for ExceptionType
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 ExceptionType
impl PartialEq for ExceptionType
Source§impl Serialize for ExceptionType
impl Serialize for ExceptionType
impl Eq for ExceptionType
impl StructuralPartialEq for ExceptionType
Auto Trait Implementations§
impl Freeze for ExceptionType
impl RefUnwindSafe for ExceptionType
impl Send for ExceptionType
impl Sync for ExceptionType
impl Unpin for ExceptionType
impl UnwindSafe for ExceptionType
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