pub struct ListGitHubAccountTokenNamesOutput {
pub next_token: Option<String>,
pub token_name_list: Option<Vec<String>>,
}
Expand description
Represents the output of a ListGitHubAccountTokenNames
operation.
Fields§
§next_token: Option<String>
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.
token_name_list: Option<Vec<String>>
A list of names of connections to GitHub accounts.
Trait Implementations§
Source§impl Clone for ListGitHubAccountTokenNamesOutput
impl Clone for ListGitHubAccountTokenNamesOutput
Source§fn clone(&self) -> ListGitHubAccountTokenNamesOutput
fn clone(&self) -> ListGitHubAccountTokenNamesOutput
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 Default for ListGitHubAccountTokenNamesOutput
impl Default for ListGitHubAccountTokenNamesOutput
Source§fn default() -> ListGitHubAccountTokenNamesOutput
fn default() -> ListGitHubAccountTokenNamesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGitHubAccountTokenNamesOutput
impl<'de> Deserialize<'de> for ListGitHubAccountTokenNamesOutput
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 PartialEq for ListGitHubAccountTokenNamesOutput
impl PartialEq for ListGitHubAccountTokenNamesOutput
Source§fn eq(&self, other: &ListGitHubAccountTokenNamesOutput) -> bool
fn eq(&self, other: &ListGitHubAccountTokenNamesOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListGitHubAccountTokenNamesOutput
Auto Trait Implementations§
impl Freeze for ListGitHubAccountTokenNamesOutput
impl RefUnwindSafe for ListGitHubAccountTokenNamesOutput
impl Send for ListGitHubAccountTokenNamesOutput
impl Sync for ListGitHubAccountTokenNamesOutput
impl Unpin for ListGitHubAccountTokenNamesOutput
impl UnwindSafe for ListGitHubAccountTokenNamesOutput
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