pub struct UserSamlSourceConnectionRequest {
pub user: i32,
pub identifier: String,
}
Expand description
UserSamlSourceConnectionRequest : SAML Source Serializer
Fields§
§user: i32
§identifier: String
Implementations§
Source§impl UserSamlSourceConnectionRequest
impl UserSamlSourceConnectionRequest
Sourcepub fn new(user: i32, identifier: String) -> UserSamlSourceConnectionRequest
pub fn new(user: i32, identifier: String) -> UserSamlSourceConnectionRequest
SAML Source Serializer
Trait Implementations§
Source§impl Clone for UserSamlSourceConnectionRequest
impl Clone for UserSamlSourceConnectionRequest
Source§fn clone(&self) -> UserSamlSourceConnectionRequest
fn clone(&self) -> UserSamlSourceConnectionRequest
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 UserSamlSourceConnectionRequest
impl Default for UserSamlSourceConnectionRequest
Source§fn default() -> UserSamlSourceConnectionRequest
fn default() -> UserSamlSourceConnectionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserSamlSourceConnectionRequest
impl<'de> Deserialize<'de> for UserSamlSourceConnectionRequest
Source§fn 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
Source§impl PartialEq for UserSamlSourceConnectionRequest
impl PartialEq for UserSamlSourceConnectionRequest
Source§fn eq(&self, other: &UserSamlSourceConnectionRequest) -> bool
fn eq(&self, other: &UserSamlSourceConnectionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UserSamlSourceConnectionRequest
Auto Trait Implementations§
impl Freeze for UserSamlSourceConnectionRequest
impl RefUnwindSafe for UserSamlSourceConnectionRequest
impl Send for UserSamlSourceConnectionRequest
impl Sync for UserSamlSourceConnectionRequest
impl Unpin for UserSamlSourceConnectionRequest
impl UnwindSafe for UserSamlSourceConnectionRequest
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