pub struct ListPermissionsResponse {
pub next_token: Option<String>,
pub permissions: Option<Vec<Permission>>,
}
Fields§
§next_token: Option<String>
When the list is truncated, this value is present and should be used for the NextToken parameter in a subsequent pagination request.
permissions: Option<Vec<Permission>>
Summary information about each permission assigned by the specified private CA, including the action enabled, the policy provided, and the time of creation.
Trait Implementations§
Source§impl Clone for ListPermissionsResponse
impl Clone for ListPermissionsResponse
Source§fn clone(&self) -> ListPermissionsResponse
fn clone(&self) -> ListPermissionsResponse
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 ListPermissionsResponse
impl Debug for ListPermissionsResponse
Source§impl Default for ListPermissionsResponse
impl Default for ListPermissionsResponse
Source§fn default() -> ListPermissionsResponse
fn default() -> ListPermissionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPermissionsResponse
impl<'de> Deserialize<'de> for ListPermissionsResponse
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 ListPermissionsResponse
impl PartialEq for ListPermissionsResponse
impl StructuralPartialEq for ListPermissionsResponse
Auto Trait Implementations§
impl Freeze for ListPermissionsResponse
impl RefUnwindSafe for ListPermissionsResponse
impl Send for ListPermissionsResponse
impl Sync for ListPermissionsResponse
impl Unpin for ListPermissionsResponse
impl UnwindSafe for ListPermissionsResponse
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