pub struct RemovePermissionResponse {
pub policy: String,
pub revision_id: String,
}Expand description
The structure representing the removePermissionResponse.
Fields§
§policy: StringThe JSON-formatted resource-based policy on the profiling group after the specified permissions were removed.
revision_id: String A universally unique identifier (UUID) for the revision of the resource-based policy after the specified permissions were removed. The updated JSON-formatted policy is in the policy element of the response.
Trait Implementations§
Source§impl Clone for RemovePermissionResponse
impl Clone for RemovePermissionResponse
Source§fn clone(&self) -> RemovePermissionResponse
fn clone(&self) -> RemovePermissionResponse
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 RemovePermissionResponse
impl Debug for RemovePermissionResponse
Source§impl Default for RemovePermissionResponse
impl Default for RemovePermissionResponse
Source§fn default() -> RemovePermissionResponse
fn default() -> RemovePermissionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemovePermissionResponse
impl<'de> Deserialize<'de> for RemovePermissionResponse
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 RemovePermissionResponse
impl PartialEq for RemovePermissionResponse
impl StructuralPartialEq for RemovePermissionResponse
Auto Trait Implementations§
impl Freeze for RemovePermissionResponse
impl RefUnwindSafe for RemovePermissionResponse
impl Send for RemovePermissionResponse
impl Sync for RemovePermissionResponse
impl Unpin for RemovePermissionResponse
impl UnwindSafe for RemovePermissionResponse
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