pub enum AccessControlAllowOrigin {
Value(Origin),
Null,
Any,
}
Expand description
Origins allowed to access
Variants
Value(Origin)
Specific hostname
Null
null-origin (file:///, sandboxed iframe)
Any
Any non-null origin
Trait Implementations
sourceimpl Clone for AccessControlAllowOrigin
impl Clone for AccessControlAllowOrigin
sourcefn clone(&self) -> AccessControlAllowOrigin
fn clone(&self) -> AccessControlAllowOrigin
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AccessControlAllowOrigin
impl Debug for AccessControlAllowOrigin
sourceimpl Display for AccessControlAllowOrigin
impl Display for AccessControlAllowOrigin
sourceimpl<T: Into<String>> From<T> for AccessControlAllowOrigin
impl<T: Into<String>> From<T> for AccessControlAllowOrigin
sourcefn from(s: T) -> AccessControlAllowOrigin
fn from(s: T) -> AccessControlAllowOrigin
Performs the conversion.
sourceimpl PartialEq<AccessControlAllowOrigin> for AccessControlAllowOrigin
impl PartialEq<AccessControlAllowOrigin> for AccessControlAllowOrigin
sourcefn eq(&self, other: &AccessControlAllowOrigin) -> bool
fn eq(&self, other: &AccessControlAllowOrigin) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AccessControlAllowOrigin) -> bool
fn ne(&self, other: &AccessControlAllowOrigin) -> bool
This method tests for !=
.
impl Eq for AccessControlAllowOrigin
impl StructuralEq for AccessControlAllowOrigin
impl StructuralPartialEq for AccessControlAllowOrigin
Auto Trait Implementations
impl RefUnwindSafe for AccessControlAllowOrigin
impl Send for AccessControlAllowOrigin
impl Sync for AccessControlAllowOrigin
impl Unpin for AccessControlAllowOrigin
impl UnwindSafe for AccessControlAllowOrigin
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more