#[non_exhaustive]pub enum PropertiesError {
    PropDataLoad(DataError),
    UnknownScriptId(u16),
    UnknownGeneralCategoryGroup(u32),
    UnexpectedPropertyName,
}Expand description
A list of error outcomes for various operations in this module.
Re-exported as Error.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PropDataLoad(DataError)
An error occurred while loading data
UnknownScriptId(u16)
An unknown value was used for the Script property
UnknownGeneralCategoryGroup(u32)
An unknown value was used for the GeneralCategoryGroup property
UnexpectedPropertyName
An unknown or unexpected property name was used for an API dealing with properties specified as strings at runtime
Trait Implementations§
Source§impl Clone for PropertiesError
 
impl Clone for PropertiesError
Source§fn clone(&self) -> PropertiesError
 
fn clone(&self) -> PropertiesError
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 PropertiesError
 
impl Debug for PropertiesError
Source§impl Display for PropertiesError
 
impl Display for PropertiesError
Source§impl From<DataError> for PropertiesError
 
impl From<DataError> for PropertiesError
Source§impl PartialEq for PropertiesError
 
impl PartialEq for PropertiesError
impl Copy for PropertiesError
impl Eq for PropertiesError
impl StructuralPartialEq for PropertiesError
Auto Trait Implementations§
impl Freeze for PropertiesError
impl RefUnwindSafe for PropertiesError
impl Send for PropertiesError
impl Sync for PropertiesError
impl Unpin for PropertiesError
impl UnwindSafe for PropertiesError
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