pub enum SetupError {
CannotSymlink,
ConfigError(GetConfigError),
NoValidTendrilsRepo(GetTendrilsRepoError),
}Expand description
Indicates an error with the setup of a Tendrils repo.
Variants§
CannotSymlink
The runtime context on Windows does not permit creating symlinks.
ConfigError(GetConfigError)
An error in importing the configuration.
NoValidTendrilsRepo(GetTendrilsRepoError)
No valid Tendrils repo was found.
Trait Implementations§
Source§impl Clone for SetupError
impl Clone for SetupError
Source§fn clone(&self) -> SetupError
fn clone(&self) -> SetupError
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 SetupError
impl Debug for SetupError
Source§impl From<GetConfigError> for SetupError
impl From<GetConfigError> for SetupError
Source§fn from(err: GetConfigError) -> Self
fn from(err: GetConfigError) -> Self
Converts to this type from the input type.
Source§impl From<GetTendrilsRepoError> for SetupError
impl From<GetTendrilsRepoError> for SetupError
Source§fn from(err: GetTendrilsRepoError) -> Self
fn from(err: GetTendrilsRepoError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetupError
impl PartialEq for SetupError
Source§impl ToString for SetupError
impl ToString for SetupError
impl Eq for SetupError
impl StructuralPartialEq for SetupError
Auto Trait Implementations§
impl Freeze for SetupError
impl RefUnwindSafe for SetupError
impl Send for SetupError
impl Sync for SetupError
impl Unpin for SetupError
impl UnsafeUnpin for SetupError
impl UnwindSafe for SetupError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.