()
| 91 | } |
| 92 | |
| 93 | func (o *Credential) HasUsername() bool { |
| 94 | if C.git_credential_has_username(o.ptr) == 1 { |
| 95 | return true |
| 96 | } |
| 97 | return false |
| 98 | } |
| 99 | |
| 100 | func (o *Credential) Type() CredentialType { |
| 101 | return (CredentialType)(C._go_git_credential_credtype(o.ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected