Enum libmedusa_zip::zip::InputConsistencyError  
source · pub enum InputConsistencyError {
    DuplicateName(EntryName, PathBuf, PathBuf),
    NameFormat(MedusaNameFormatError),
}Variants§
DuplicateName(EntryName, PathBuf, PathBuf)
name {0} was duplicated for source paths {1:?} and {2:?}
NameFormat(MedusaNameFormatError)
error in name formatting: {0}
Trait Implementations§
source§impl Debug for InputConsistencyError
 
impl Debug for InputConsistencyError
source§impl Display for InputConsistencyError
 
impl Display for InputConsistencyError
source§impl Error for InputConsistencyError
 
impl Error for InputConsistencyError
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()
source§impl From<InputConsistencyError> for MedusaZipError
 
impl From<InputConsistencyError> for MedusaZipError
source§fn from(source: InputConsistencyError) -> Self
 
fn from(source: InputConsistencyError) -> Self
Converts to this type from the input type.
source§impl From<MedusaNameFormatError> for InputConsistencyError
 
impl From<MedusaNameFormatError> for InputConsistencyError
source§fn from(source: MedusaNameFormatError) -> Self
 
fn from(source: MedusaNameFormatError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for InputConsistencyError
impl Send for InputConsistencyError
impl Sync for InputConsistencyError
impl Unpin for InputConsistencyError
impl UnwindSafe for InputConsistencyError
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