pub struct SamlProvider {
pub arn: String,
pub name: String,
pub saml_metadata_document: String,
pub created_at: DateTime<Utc>,
pub valid_until: DateTime<Utc>,
pub tags: Vec<Tag>,
}Fields§
§arn: String§name: String§saml_metadata_document: String§created_at: DateTime<Utc>§valid_until: DateTime<Utc>Trait Implementations§
Source§impl Clone for SamlProvider
impl Clone for SamlProvider
Source§fn clone(&self) -> SamlProvider
fn clone(&self) -> SamlProvider
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 moreAuto Trait Implementations§
impl Freeze for SamlProvider
impl RefUnwindSafe for SamlProvider
impl Send for SamlProvider
impl Sync for SamlProvider
impl Unpin for SamlProvider
impl UnsafeUnpin for SamlProvider
impl UnwindSafe for SamlProvider
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