pub enum Discovery {
Tag(String),
Unreachable(String),
Unparsable(String),
}Expand description
What discovery found.
Variants§
Tag(String)
The latest release’s tag, normalized.
Unreachable(String)
The source did not answer; the detail is curl’s last line.
Unparsable(String)
The source answered something that names no tag.
Trait Implementations§
impl Eq for Discovery
impl StructuralPartialEq for Discovery
Auto Trait Implementations§
impl Freeze for Discovery
impl RefUnwindSafe for Discovery
impl Send for Discovery
impl Sync for Discovery
impl Unpin for Discovery
impl UnsafeUnpin for Discovery
impl UnwindSafe for Discovery
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