Struct aws_sdk_elasticbeanstalk::operation::list_platform_branches::ListPlatformBranchesOutput
source · #[non_exhaustive]pub struct ListPlatformBranchesOutput {
pub platform_branch_summary_list: Option<Vec<PlatformBranchSummary>>,
pub next_token: Option<String>,
/* 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.platform_branch_summary_list: Option<Vec<PlatformBranchSummary>>
Summary information about the platform branches.
next_token: Option<String>
In a paginated request, if this value isn't null
, it's the token that you can pass in a subsequent request to get the next response page.
Implementations§
source§impl ListPlatformBranchesOutput
impl ListPlatformBranchesOutput
sourcepub fn platform_branch_summary_list(&self) -> Option<&[PlatformBranchSummary]>
pub fn platform_branch_summary_list(&self) -> Option<&[PlatformBranchSummary]>
Summary information about the platform branches.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
In a paginated request, if this value isn't null
, it's the token that you can pass in a subsequent request to get the next response page.
source§impl ListPlatformBranchesOutput
impl ListPlatformBranchesOutput
sourcepub fn builder() -> ListPlatformBranchesOutputBuilder
pub fn builder() -> ListPlatformBranchesOutputBuilder
Creates a new builder-style object to manufacture ListPlatformBranchesOutput
.
Trait Implementations§
source§impl Clone for ListPlatformBranchesOutput
impl Clone for ListPlatformBranchesOutput
source§fn clone(&self) -> ListPlatformBranchesOutput
fn clone(&self) -> ListPlatformBranchesOutput
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 ListPlatformBranchesOutput
impl Debug for ListPlatformBranchesOutput
source§impl PartialEq<ListPlatformBranchesOutput> for ListPlatformBranchesOutput
impl PartialEq<ListPlatformBranchesOutput> for ListPlatformBranchesOutput
source§fn eq(&self, other: &ListPlatformBranchesOutput) -> bool
fn eq(&self, other: &ListPlatformBranchesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListPlatformBranchesOutput
impl RequestId for ListPlatformBranchesOutput
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 ListPlatformBranchesOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListPlatformBranchesOutput
impl Send for ListPlatformBranchesOutput
impl Sync for ListPlatformBranchesOutput
impl Unpin for ListPlatformBranchesOutput
impl UnwindSafe for ListPlatformBranchesOutput
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