#[non_exhaustive]pub struct GetIamPolicyRequest {
pub resource: String,
pub options: Option<GetPolicyOptions>,
}Expand description
Request message for GetIamPolicy method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource: StringREQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
options: Option<GetPolicyOptions>OPTIONAL: A GetPolicyOptions object for specifying options to
GetIamPolicy.
Implementations§
Source§impl GetIamPolicyRequest
impl GetIamPolicyRequest
Sourcepub fn set_resource<T: Into<String>>(self, v: T) -> Self
pub fn set_resource<T: Into<String>>(self, v: T) -> Self
Sets the value of resource.
Sourcepub fn set_options<T: Into<Option<GetPolicyOptions>>>(self, v: T) -> Self
pub fn set_options<T: Into<Option<GetPolicyOptions>>>(self, v: T) -> Self
Sets the value of options.
Trait Implementations§
Source§impl Clone for GetIamPolicyRequest
impl Clone for GetIamPolicyRequest
Source§fn clone(&self) -> GetIamPolicyRequest
fn clone(&self) -> GetIamPolicyRequest
Returns a copy 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 GetIamPolicyRequest
impl Debug for GetIamPolicyRequest
Source§impl Default for GetIamPolicyRequest
impl Default for GetIamPolicyRequest
Source§fn default() -> GetIamPolicyRequest
fn default() -> GetIamPolicyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetIamPolicyRequestwhere
GetIamPolicyRequest: Default,
impl<'de> Deserialize<'de> for GetIamPolicyRequestwhere
GetIamPolicyRequest: Default,
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 Message for GetIamPolicyRequest
impl Message for GetIamPolicyRequest
Source§impl PartialEq for GetIamPolicyRequest
impl PartialEq for GetIamPolicyRequest
Source§impl Serialize for GetIamPolicyRequest
impl Serialize for GetIamPolicyRequest
impl StructuralPartialEq for GetIamPolicyRequest
Auto Trait Implementations§
impl Freeze for GetIamPolicyRequest
impl RefUnwindSafe for GetIamPolicyRequest
impl Send for GetIamPolicyRequest
impl Sync for GetIamPolicyRequest
impl Unpin for GetIamPolicyRequest
impl UnwindSafe for GetIamPolicyRequest
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