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