pub enum HttpCorsProfile {
Any,
Origins(Vec<String>),
}Variants§
Trait Implementations§
Source§impl Clone for HttpCorsProfile
impl Clone for HttpCorsProfile
Source§fn clone(&self) -> HttpCorsProfile
fn clone(&self) -> HttpCorsProfile
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 HttpCorsProfile
impl Debug for HttpCorsProfile
Source§impl<'de> Deserialize<'de> for HttpCorsProfile
impl<'de> Deserialize<'de> for HttpCorsProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HttpCorsProfile
impl PartialEq for HttpCorsProfile
Source§fn eq(&self, other: &HttpCorsProfile) -> bool
fn eq(&self, other: &HttpCorsProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HttpCorsProfile
impl Serialize for HttpCorsProfile
impl Eq for HttpCorsProfile
impl StructuralPartialEq for HttpCorsProfile
Auto Trait Implementations§
impl Freeze for HttpCorsProfile
impl RefUnwindSafe for HttpCorsProfile
impl Send for HttpCorsProfile
impl Sync for HttpCorsProfile
impl Unpin for HttpCorsProfile
impl UnsafeUnpin for HttpCorsProfile
impl UnwindSafe for HttpCorsProfile
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