pub struct ListGitHubAccountTokenNamesInput {
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListGitHubAccountTokenNames
operation.
Fields§
§next_token: Option<String>
An identifier returned from the previous ListGitHubAccountTokenNames
call. It can be used to return the next set of names in the list.
Trait Implementations§
Source§impl Clone for ListGitHubAccountTokenNamesInput
impl Clone for ListGitHubAccountTokenNamesInput
Source§fn clone(&self) -> ListGitHubAccountTokenNamesInput
fn clone(&self) -> ListGitHubAccountTokenNamesInput
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 ListGitHubAccountTokenNamesInput
impl Default for ListGitHubAccountTokenNamesInput
Source§fn default() -> ListGitHubAccountTokenNamesInput
fn default() -> ListGitHubAccountTokenNamesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListGitHubAccountTokenNamesInput
impl PartialEq for ListGitHubAccountTokenNamesInput
Source§fn eq(&self, other: &ListGitHubAccountTokenNamesInput) -> bool
fn eq(&self, other: &ListGitHubAccountTokenNamesInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListGitHubAccountTokenNamesInput
Auto Trait Implementations§
impl Freeze for ListGitHubAccountTokenNamesInput
impl RefUnwindSafe for ListGitHubAccountTokenNamesInput
impl Send for ListGitHubAccountTokenNamesInput
impl Sync for ListGitHubAccountTokenNamesInput
impl Unpin for ListGitHubAccountTokenNamesInput
impl UnwindSafe for ListGitHubAccountTokenNamesInput
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