pub enum OriginError {
InvalidScheme {
scheme: String,
},
}Expand description
A protocol scheme that could not be turned into an origin pair.
Variants§
InvalidScheme
The scheme name is not usable as both a URL scheme and a DNS label.
On Windows and Android the scheme becomes the first label of
<scheme>.localhost, so it is held to the stricter of the two rules:
a leading ASCII letter followed by letters, digits, and hyphens, within
the 63 octets a DNS label may be.
Trait Implementations§
Source§impl Clone for OriginError
impl Clone for OriginError
Source§fn clone(&self) -> OriginError
fn clone(&self) -> OriginError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OriginError
impl Debug for OriginError
Source§impl Display for OriginError
impl Display for OriginError
impl Eq for OriginError
Source§impl Error for OriginError
impl Error for OriginError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for OriginError
impl PartialEq for OriginError
impl StructuralPartialEq for OriginError
Auto Trait Implementations§
impl Freeze for OriginError
impl RefUnwindSafe for OriginError
impl Send for OriginError
impl Sync for OriginError
impl Unpin for OriginError
impl UnsafeUnpin for OriginError
impl UnwindSafe for OriginError
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