Enum actix_cors::CorsError [−][src]
#[non_exhaustive] pub enum CorsError { WildcardOrigin, MissingOrigin, MissingRequestMethod, BadRequestMethod, BadRequestHeaders, OriginNotAllowed, MethodNotAllowed, HeadersNotAllowed, }
Expand description
Errors that can occur when processing CORS guarded requests.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Allowed origin argument must not be wildcard (*
).
Request header Origin
is required but was not provided.
Request header Access-Control-Request-Method
is required but is missing.
Request header Access-Control-Request-Method
has an invalid value.
Request header Access-Control-Request-Headers
has an invalid value.
Origin is not allowed to make this request.
Request method is not allowed.
One or more request headers are not allowed.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CorsError
impl UnwindSafe for CorsError
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V