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
sourcepub fn clone(&self) -> AccessControlAllowOrigin
pub 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> From<T> for AccessControlAllowOrigin where
T: Into<String>,
impl<T> From<T> for AccessControlAllowOrigin where
T: Into<String>,
sourcepub fn from(s: T) -> AccessControlAllowOrigin
pub fn from(s: T) -> AccessControlAllowOrigin
Performs the conversion.
sourceimpl PartialEq<AccessControlAllowOrigin> for AccessControlAllowOrigin
impl PartialEq<AccessControlAllowOrigin> for AccessControlAllowOrigin
sourcepub fn eq(&self, other: &AccessControlAllowOrigin) -> bool
pub fn eq(&self, other: &AccessControlAllowOrigin) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &AccessControlAllowOrigin) -> bool
pub 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<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcepub fn equivalent(&self, key: &K) -> bool
pub fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
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