Enum c3dio::C3dIoError
source · pub enum C3dIoError {
Show 14 variants
WriteError(PathBuf, Error),
InvalidFileExtension(String),
InvalidFilePath(PathBuf),
WriteHeaderError(Error),
WriteParametersError(Error),
WriteDataError(Error),
GroupNameTooLong(String),
GroupNameNotAscii(String),
GroupDescriptionTooLong(String),
ParameterNameTooLong(String),
ParameterNameNotAscii(String),
InvalidParameterDimensions(String),
ParameterDescriptionTooLong(String),
InvalidForcePlatformInfo(String),
}Variants§
WriteError(PathBuf, Error)
InvalidFileExtension(String)
InvalidFilePath(PathBuf)
WriteHeaderError(Error)
WriteParametersError(Error)
WriteDataError(Error)
GroupNameTooLong(String)
GroupNameNotAscii(String)
GroupDescriptionTooLong(String)
ParameterNameTooLong(String)
ParameterNameNotAscii(String)
InvalidParameterDimensions(String)
ParameterDescriptionTooLong(String)
InvalidForcePlatformInfo(String)
Trait Implementations§
source§impl Debug for C3dIoError
impl Debug for C3dIoError
source§impl Display for C3dIoError
impl Display for C3dIoError
source§impl Error for C3dIoError
impl Error for C3dIoError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl !RefUnwindSafe for C3dIoError
impl Send for C3dIoError
impl Sync for C3dIoError
impl Unpin for C3dIoError
impl !UnwindSafe for C3dIoError
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