pub struct RepoSelection {
pub error: &'static str,
pub message: String,
pub candidates: Vec<String>,
}Expand description
Why select_repo found nothing: repo_not_found with the slugs that
exist.
Fields§
§error: &'static strAlways "repo_not_found" (the reference’s one code).
message: String§candidates: Vec<String>Trait Implementations§
Source§impl Clone for RepoSelection
impl Clone for RepoSelection
Source§impl Debug for RepoSelection
impl Debug for RepoSelection
impl Eq for RepoSelection
Source§impl From<RepoSelection> for Error
impl From<RepoSelection> for Error
Source§fn from(s: RepoSelection) -> Self
fn from(s: RepoSelection) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RepoSelection
impl PartialEq for RepoSelection
impl StructuralPartialEq for RepoSelection
Auto Trait Implementations§
impl Freeze for RepoSelection
impl RefUnwindSafe for RepoSelection
impl Send for RepoSelection
impl Sync for RepoSelection
impl Unpin for RepoSelection
impl UnsafeUnpin for RepoSelection
impl UnwindSafe for RepoSelection
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.