pub struct GitCredentialResponse {
pub id: String,
pub name: String,
pub kind: GitCredentialKindSchema,
}Expand description
Git credential metadata (returned by list/create; no secret value).
Fields§
§id: StringUnique identifier.
name: StringHuman-readable display label.
kind: GitCredentialKindSchemaCredential kind.
Trait Implementations§
Source§impl Clone for GitCredentialResponse
impl Clone for GitCredentialResponse
Source§fn clone(&self) -> GitCredentialResponse
fn clone(&self) -> GitCredentialResponse
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 ComposeSchema for GitCredentialResponse
impl ComposeSchema for GitCredentialResponse
Source§impl Debug for GitCredentialResponse
impl Debug for GitCredentialResponse
Source§impl<'de> Deserialize<'de> for GitCredentialResponse
impl<'de> Deserialize<'de> for GitCredentialResponse
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 Serialize for GitCredentialResponse
impl Serialize for GitCredentialResponse
Auto Trait Implementations§
impl Freeze for GitCredentialResponse
impl RefUnwindSafe for GitCredentialResponse
impl Send for GitCredentialResponse
impl Sync for GitCredentialResponse
impl Unpin for GitCredentialResponse
impl UnsafeUnpin for GitCredentialResponse
impl UnwindSafe for GitCredentialResponse
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