radicle: mark `CheckoutError` as `non_exhaustive`

Recently, this error enum was changed. To ensure it does not cause crate version
changes, in the future, mark it as `non_exhaustive`.
This commit is contained in:
Fintan Halpenny 2025-10-06 16:52:16 +01:00 committed by Lorenz Leutgeb
parent 5b260964cb
commit 59e09078bb
1 changed files with 1 additions and 0 deletions

View File

@ -225,6 +225,7 @@ where
}
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum CheckoutError {
#[error("failed to fetch to working copy: {0}")]
FetchIo(#[source] std::io::Error),