pub struct CsrfConfig { /* private fields */ }Expand description
CSRF protection configuration.
§Spring Security Equivalent
Similar to CsrfConfigurer in Spring Security.
Implementations§
Source§impl CsrfConfig
impl CsrfConfig
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new CSRF configuration with default settings.
By default:
- Uses session-based token storage
- Protects POST, PUT, DELETE, PATCH methods
- Token header: X-CSRF-TOKEN
- Token parameter: _csrf
Sourcepub fn repository<R: CsrfTokenRepository + 'static>(self, repository: R) -> Self
pub fn repository<R: CsrfTokenRepository + 'static>(self, repository: R) -> Self
Set a custom token repository.
Sourcepub fn protected_methods(self, methods: Vec<Method>) -> Self
pub fn protected_methods(self, methods: Vec<Method>) -> Self
Set the methods that require CSRF protection.
Sourcepub fn ignore_path(self, pattern: &str) -> Self
pub fn ignore_path(self, pattern: &str) -> Self
Sourcepub fn header_name(self, name: &str) -> Self
pub fn header_name(self, name: &str) -> Self
Set the header name for the token.
Sourcepub fn parameter_name(self, name: &str) -> Self
pub fn parameter_name(self, name: &str) -> Self
Set the parameter name for the token.
Trait Implementations§
Source§impl Clone for CsrfConfig
impl Clone for CsrfConfig
Source§fn clone(&self) -> CsrfConfig
fn clone(&self) -> CsrfConfig
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CsrfConfig
impl !RefUnwindSafe for CsrfConfig
impl Send for CsrfConfig
impl Sync for CsrfConfig
impl Unpin for CsrfConfig
impl !UnwindSafe for CsrfConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more