Remove usage of `Self` struct constructors
This commit is contained in:
parent
f7ae2e65d2
commit
30bc677293
|
@ -857,7 +857,7 @@ impl Cors {
|
||||||
/// Create a `Cors` struct from a [`CorsOptions`]
|
/// Create a `Cors` struct from a [`CorsOptions`]
|
||||||
pub fn from_options(options: &CorsOptions) -> Result<Self, Error> {
|
pub fn from_options(options: &CorsOptions) -> Result<Self, Error> {
|
||||||
options.validate()?;
|
options.validate()?;
|
||||||
Ok(Self(options.clone()))
|
Ok(Cors(options.clone()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Manually respond to a request with CORS checks and headers using an Owned `Cors`.
|
/// Manually respond to a request with CORS checks and headers using an Owned `Cors`.
|
||||||
|
|
Loading…
Reference in New Issue