pub enum ReadPropertyError {
NotFound,
InvalidFormat,
}Expand description
A Failure to parse an XISF Property
Counterpart to ReadFitsKeyError
Variants§
NotFound
Could not find an XISF property with the given id
InvalidFormat
Failed to parse the property into the requested type
Trait Implementations§
Source§impl Clone for ReadPropertyError
impl Clone for ReadPropertyError
Source§fn clone(&self) -> ReadPropertyError
fn clone(&self) -> ReadPropertyError
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 ReadPropertyError
impl Debug for ReadPropertyError
Source§impl Display for ReadPropertyError
impl Display for ReadPropertyError
Source§impl Error for ReadPropertyError
impl Error for ReadPropertyError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ReadPropertyError
impl PartialEq for ReadPropertyError
impl Copy for ReadPropertyError
impl StructuralPartialEq for ReadPropertyError
Auto Trait Implementations§
impl Freeze for ReadPropertyError
impl RefUnwindSafe for ReadPropertyError
impl Send for ReadPropertyError
impl Sync for ReadPropertyError
impl Unpin for ReadPropertyError
impl UnwindSafe for ReadPropertyError
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