pub struct DescribePrincipalIdFormatResult {
pub next_token: Option<String>,
pub principals: Option<Vec<PrincipalIdFormat>>,
}Fields§
§next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
principals: Option<Vec<PrincipalIdFormat>>Information about the ID format settings for the ARN.
Trait Implementations§
Source§impl Clone for DescribePrincipalIdFormatResult
impl Clone for DescribePrincipalIdFormatResult
Source§fn clone(&self) -> DescribePrincipalIdFormatResult
fn clone(&self) -> DescribePrincipalIdFormatResult
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 DescribePrincipalIdFormatResult
impl Default for DescribePrincipalIdFormatResult
Source§fn default() -> DescribePrincipalIdFormatResult
fn default() -> DescribePrincipalIdFormatResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribePrincipalIdFormatResult
impl PartialEq for DescribePrincipalIdFormatResult
Source§fn eq(&self, other: &DescribePrincipalIdFormatResult) -> bool
fn eq(&self, other: &DescribePrincipalIdFormatResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribePrincipalIdFormatResult
Auto Trait Implementations§
impl Freeze for DescribePrincipalIdFormatResult
impl RefUnwindSafe for DescribePrincipalIdFormatResult
impl Send for DescribePrincipalIdFormatResult
impl Sync for DescribePrincipalIdFormatResult
impl Unpin for DescribePrincipalIdFormatResult
impl UnwindSafe for DescribePrincipalIdFormatResult
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