Struct saml_rs::sp::ServiceBinding
source · [−]pub struct ServiceBinding {
pub servicetype: SamlBindingType,
pub binding: SamlBinding,
pub location: String,
pub index: u8,
}
Expand description
Types of bindings for service providers TODO: implement a way of pulling the first/a given logout, or the first/ a given assertionconsumer
Fields
servicetype: SamlBindingType
SamlBindingType Binding type, things like HTTP-POST
or HTTP-REDIRECT
binding: SamlBinding
Binding method
location: String
Where to send the response to
index: u8
Consumer index, if there’s more than 256 then wow, seriously?
Implementations
sourceimpl ServiceBinding
impl ServiceBinding
Trait Implementations
sourceimpl Clone for ServiceBinding
impl Clone for ServiceBinding
sourcefn clone(&self) -> ServiceBinding
fn clone(&self) -> ServiceBinding
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ServiceBinding
impl Debug for ServiceBinding
sourceimpl<'de> Deserialize<'de> for ServiceBinding
impl<'de> Deserialize<'de> for ServiceBinding
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ServiceBinding
impl Serialize for ServiceBinding
Auto Trait Implementations
impl RefUnwindSafe for ServiceBinding
impl Send for ServiceBinding
impl Sync for ServiceBinding
impl Unpin for ServiceBinding
impl UnwindSafe for ServiceBinding
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more