#[non_exhaustive]pub struct ListAclsResponse {
pub acls: Vec<Acl>,
pub next_page_token: String,
/* private fields */
}Expand description
Response for ListAcls.
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.acls: Vec<Acl>The list of acls in the requested parent. The order of the acls is unspecified.
next_page_token: StringA token that can be sent as page_token to retrieve the next page of
results. If this field is omitted, there are no more results.
Implementations§
Source§impl ListAclsResponse
impl ListAclsResponse
pub fn new() -> Self
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for ListAclsResponse
impl Clone for ListAclsResponse
Source§fn clone(&self) -> ListAclsResponse
fn clone(&self) -> ListAclsResponse
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 ListAclsResponse
impl Debug for ListAclsResponse
Source§impl Default for ListAclsResponse
impl Default for ListAclsResponse
Source§fn default() -> ListAclsResponse
fn default() -> ListAclsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListAclsResponse
impl Message for ListAclsResponse
Source§impl PartialEq for ListAclsResponse
impl PartialEq for ListAclsResponse
impl StructuralPartialEq for ListAclsResponse
Auto Trait Implementations§
impl Freeze for ListAclsResponse
impl RefUnwindSafe for ListAclsResponse
impl Send for ListAclsResponse
impl Sync for ListAclsResponse
impl Unpin for ListAclsResponse
impl UnwindSafe for ListAclsResponse
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