pub struct DeleteGitHubAccountTokenInput {
pub token_name: Option<String>,
}
Expand description
Represents the input of a DeleteGitHubAccount
operation.
Fields§
§token_name: Option<String>
The name of the GitHub account connection to delete.
Trait Implementations§
Source§impl Clone for DeleteGitHubAccountTokenInput
impl Clone for DeleteGitHubAccountTokenInput
Source§fn clone(&self) -> DeleteGitHubAccountTokenInput
fn clone(&self) -> DeleteGitHubAccountTokenInput
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 DeleteGitHubAccountTokenInput
impl Default for DeleteGitHubAccountTokenInput
Source§fn default() -> DeleteGitHubAccountTokenInput
fn default() -> DeleteGitHubAccountTokenInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteGitHubAccountTokenInput
impl PartialEq for DeleteGitHubAccountTokenInput
Source§fn eq(&self, other: &DeleteGitHubAccountTokenInput) -> bool
fn eq(&self, other: &DeleteGitHubAccountTokenInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteGitHubAccountTokenInput
Auto Trait Implementations§
impl Freeze for DeleteGitHubAccountTokenInput
impl RefUnwindSafe for DeleteGitHubAccountTokenInput
impl Send for DeleteGitHubAccountTokenInput
impl Sync for DeleteGitHubAccountTokenInput
impl Unpin for DeleteGitHubAccountTokenInput
impl UnwindSafe for DeleteGitHubAccountTokenInput
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