pub enum PackError {
EmptyScope,
BudgetTooSmall(usize),
Io(String),
}Expand description
Errors that can occur during repository packing.
Variants§
EmptyScope
The scope resolved to zero candidate files — nothing to pack.
BudgetTooSmall(usize)
The token budget cannot even cover per-file overhead for the candidate set. The value is the minimum budget required.
Io(String)
An I/O or other infrastructure error prevented reading a file.
Trait Implementations§
Source§impl Error for PackError
impl Error for PackError
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()
Auto Trait Implementations§
impl Freeze for PackError
impl RefUnwindSafe for PackError
impl Send for PackError
impl Sync for PackError
impl Unpin for PackError
impl UnsafeUnpin for PackError
impl UnwindSafe for PackError
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