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§
source§impl Clone for AccessControlAllowOrigin
impl Clone for AccessControlAllowOrigin
source§fn clone(&self) -> AccessControlAllowOrigin
fn clone(&self) -> AccessControlAllowOrigin
Returns a copy of the value. Read more
1.0.0 · 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 AccessControlAllowOrigin
impl Debug for AccessControlAllowOrigin
source§impl Display for AccessControlAllowOrigin
impl Display for AccessControlAllowOrigin
source§impl<T: Into<String>> From<T> for AccessControlAllowOrigin
impl<T: Into<String>> From<T> for AccessControlAllowOrigin
source§fn from(s: T) -> AccessControlAllowOrigin
fn from(s: T) -> AccessControlAllowOrigin
Converts to this type from the input type.