pub enum Dispatch {
Redirect(Url),
Post(PostForm),
}Expand description
Dispatch for outbound SAML requests (AuthnRequest, LogoutRequest) and
outbound LogoutResponse. SLO permits all three of Redirect / POST / SOAP;
SOAP is handled separately. Web Browser SSO Response uses the
typed-subset SsoResponseDispatch below instead.
Variants§
Redirect(Url)
HTTP 302 to this URL.
Post(PostForm)
Render an auto-submitting HTML form to this action URL.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dispatch
impl RefUnwindSafe for Dispatch
impl Send for Dispatch
impl Sync for Dispatch
impl Unpin for Dispatch
impl UnsafeUnpin for Dispatch
impl UnwindSafe for Dispatch
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