pub enum SchemeType {
Http = 0,
NotSpecial = 1,
Https = 2,
Ws = 3,
Ftp = 4,
Wss = 5,
File = 6,
}
Expand description
Defines the scheme type of the url.
Variants§
Trait Implementations§
Source§impl Clone for SchemeType
impl Clone for SchemeType
Source§fn clone(&self) -> SchemeType
fn clone(&self) -> SchemeType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SchemeType
impl Debug for SchemeType
Source§impl From<u32> for SchemeType
impl From<u32> for SchemeType
Source§impl PartialEq for SchemeType
impl PartialEq for SchemeType
impl Eq for SchemeType
impl StructuralPartialEq for SchemeType
Auto Trait Implementations§
impl Freeze for SchemeType
impl RefUnwindSafe for SchemeType
impl Send for SchemeType
impl Sync for SchemeType
impl Unpin for SchemeType
impl UnwindSafe for SchemeType
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