pub enum Scheme {
Http,
Https,
File,
Other(String),
}Expand description
Supported URL schemes known to Index.
Variants§
Http
HTTP URL.
Https
HTTPS URL.
File
Local file URL or explicit local file path use.
Other(String)
A syntactically valid scheme that is not first-class yet.
Implementations§
Trait Implementations§
impl Eq for Scheme
impl StructuralPartialEq for Scheme
Auto Trait Implementations§
impl Freeze for Scheme
impl RefUnwindSafe for Scheme
impl Send for Scheme
impl Sync for Scheme
impl Unpin for Scheme
impl UnsafeUnpin for Scheme
impl UnwindSafe for Scheme
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