#[repr(u16)]pub enum Role {
Responder = 1,
Authorizer = 2,
Filter = 3,
}Expand description
FastCGI application roles.
Variants§
Responder = 1
Responder role - handles requests and returns responses
Authorizer = 2
Authorizer role - performs authorization checks
Filter = 3
Filter role - filters data between web server and application
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Role
impl RefUnwindSafe for Role
impl Send for Role
impl Sync for Role
impl Unpin for Role
impl UnwindSafe for Role
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