pub struct SamlConnections {
pub data: Vec<SamlConnection>,
pub total_count: i64,
}Fields§
§data: Vec<SamlConnection>§total_count: i64Total number of SAML Connections
Implementations§
Source§impl SamlConnections
impl SamlConnections
pub fn new(data: Vec<SamlConnection>, total_count: i64) -> SamlConnections
Trait Implementations§
Source§impl Clone for SamlConnections
impl Clone for SamlConnections
Source§fn clone(&self) -> SamlConnections
fn clone(&self) -> SamlConnections
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 Debug for SamlConnections
impl Debug for SamlConnections
Source§impl<'de> Deserialize<'de> for SamlConnections
impl<'de> Deserialize<'de> for SamlConnections
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 SamlConnections
impl PartialEq for SamlConnections
Source§impl Serialize for SamlConnections
impl Serialize for SamlConnections
impl StructuralPartialEq for SamlConnections
Auto Trait Implementations§
impl Freeze for SamlConnections
impl RefUnwindSafe for SamlConnections
impl Send for SamlConnections
impl Sync for SamlConnections
impl Unpin for SamlConnections
impl UnwindSafe for SamlConnections
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