#[non_exhaustive]pub struct ListGitHubAccountTokenNamesOutput { /* private fields */ }
Expand description
Represents the output of a ListGitHubAccountTokenNames
operation.
Implementations
sourceimpl ListGitHubAccountTokenNamesOutput
impl ListGitHubAccountTokenNamesOutput
sourcepub fn token_name_list(&self) -> Option<&[String]>
pub fn token_name_list(&self) -> Option<&[String]>
A list of names of connections to GitHub accounts.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent ListGitHubAccountTokenNames
call to return the next set of names in the list.
sourceimpl ListGitHubAccountTokenNamesOutput
impl ListGitHubAccountTokenNamesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListGitHubAccountTokenNamesOutput
.
Trait Implementations
sourceimpl Clone for ListGitHubAccountTokenNamesOutput
impl Clone for ListGitHubAccountTokenNamesOutput
sourcefn clone(&self) -> ListGitHubAccountTokenNamesOutput
fn clone(&self) -> ListGitHubAccountTokenNamesOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ListGitHubAccountTokenNamesOutput> for ListGitHubAccountTokenNamesOutput
impl PartialEq<ListGitHubAccountTokenNamesOutput> for ListGitHubAccountTokenNamesOutput
sourcefn eq(&self, other: &ListGitHubAccountTokenNamesOutput) -> bool
fn eq(&self, other: &ListGitHubAccountTokenNamesOutput) -> bool
impl StructuralPartialEq for ListGitHubAccountTokenNamesOutput
Auto Trait Implementations
impl RefUnwindSafe for ListGitHubAccountTokenNamesOutput
impl Send for ListGitHubAccountTokenNamesOutput
impl Sync for ListGitHubAccountTokenNamesOutput
impl Unpin for ListGitHubAccountTokenNamesOutput
impl UnwindSafe for ListGitHubAccountTokenNamesOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more