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