Struct aws_sdk_codeartifact::operation::get_repository_permissions_policy::GetRepositoryPermissionsPolicyOutput   
source · #[non_exhaustive]pub struct GetRepositoryPermissionsPolicyOutput {
    pub policy: Option<ResourcePolicy>,
    /* private fields */
}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.policy: Option<ResourcePolicy>The returned resource policy.
Implementations§
source§impl GetRepositoryPermissionsPolicyOutput
 
impl GetRepositoryPermissionsPolicyOutput
sourcepub fn policy(&self) -> Option<&ResourcePolicy>
 
pub fn policy(&self) -> Option<&ResourcePolicy>
The returned resource policy.
source§impl GetRepositoryPermissionsPolicyOutput
 
impl GetRepositoryPermissionsPolicyOutput
sourcepub fn builder() -> GetRepositoryPermissionsPolicyOutputBuilder
 
pub fn builder() -> GetRepositoryPermissionsPolicyOutputBuilder
Creates a new builder-style object to manufacture GetRepositoryPermissionsPolicyOutput.
Trait Implementations§
source§impl Clone for GetRepositoryPermissionsPolicyOutput
 
impl Clone for GetRepositoryPermissionsPolicyOutput
source§fn clone(&self) -> GetRepositoryPermissionsPolicyOutput
 
fn clone(&self) -> GetRepositoryPermissionsPolicyOutput
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 PartialEq<GetRepositoryPermissionsPolicyOutput> for GetRepositoryPermissionsPolicyOutput
 
impl PartialEq<GetRepositoryPermissionsPolicyOutput> for GetRepositoryPermissionsPolicyOutput
source§fn eq(&self, other: &GetRepositoryPermissionsPolicyOutput) -> bool
 
fn eq(&self, other: &GetRepositoryPermissionsPolicyOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetRepositoryPermissionsPolicyOutput
 
impl RequestId for GetRepositoryPermissionsPolicyOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for GetRepositoryPermissionsPolicyOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRepositoryPermissionsPolicyOutput
impl Send for GetRepositoryPermissionsPolicyOutput
impl Sync for GetRepositoryPermissionsPolicyOutput
impl Unpin for GetRepositoryPermissionsPolicyOutput
impl UnwindSafe for GetRepositoryPermissionsPolicyOutput
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