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() -> CsrfConfig
pub fn new() -> CsrfConfig
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>(self, repository: R) -> CsrfConfigwhere
R: CsrfTokenRepository + 'static,
pub fn repository<R>(self, repository: R) -> CsrfConfigwhere
R: CsrfTokenRepository + 'static,
Set a custom token repository.
Sourcepub fn protected_methods(self, methods: Vec<Method>) -> CsrfConfig
pub fn protected_methods(self, methods: Vec<Method>) -> CsrfConfig
Set the methods that require CSRF protection.
Sourcepub fn ignore_path(self, pattern: &str) -> CsrfConfig
pub fn ignore_path(self, pattern: &str) -> CsrfConfig
Sourcepub fn header_name(self, name: &str) -> CsrfConfig
pub fn header_name(self, name: &str) -> CsrfConfig
Set the header name for the token.
Sourcepub fn parameter_name(self, name: &str) -> CsrfConfig
pub fn parameter_name(self, name: &str) -> CsrfConfig
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 moreSource§impl Default for CsrfConfig
impl Default for CsrfConfig
Source§fn default() -> CsrfConfig
fn default() -> CsrfConfig
Returns the “default value” for a type. Read more
Auto 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