pub struct ApiOverview {Show 14 fields
pub verifiable_password_authentication: bool,
pub ssh_key_fingerprints: Option<Box<ApiOverviewSshKeyFingerprints>>,
pub ssh_keys: Option<Vec<String>>,
pub hooks: Option<Vec<String>>,
pub github_enterprise_importer: Option<Vec<String>>,
pub web: Option<Vec<String>>,
pub api: Option<Vec<String>>,
pub git: Option<Vec<String>>,
pub packages: Option<Vec<String>>,
pub pages: Option<Vec<String>>,
pub importer: Option<Vec<String>>,
pub actions: Option<Vec<String>>,
pub dependabot: Option<Vec<String>>,
pub domains: Option<Box<ApiOverviewDomains>>,
}
Expand description
ApiOverview : Api Overview
Fields§
§verifiable_password_authentication: bool
§ssh_key_fingerprints: Option<Box<ApiOverviewSshKeyFingerprints>>
§ssh_keys: Option<Vec<String>>
§hooks: Option<Vec<String>>
§github_enterprise_importer: Option<Vec<String>>
§web: Option<Vec<String>>
§api: Option<Vec<String>>
§git: Option<Vec<String>>
§packages: Option<Vec<String>>
§pages: Option<Vec<String>>
§importer: Option<Vec<String>>
§actions: Option<Vec<String>>
§dependabot: Option<Vec<String>>
§domains: Option<Box<ApiOverviewDomains>>
Implementations§
Source§impl ApiOverview
impl ApiOverview
Sourcepub fn new(verifiable_password_authentication: bool) -> ApiOverview
pub fn new(verifiable_password_authentication: bool) -> ApiOverview
Api Overview
Trait Implementations§
Source§impl Clone for ApiOverview
impl Clone for ApiOverview
Source§fn clone(&self) -> ApiOverview
fn clone(&self) -> ApiOverview
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 Debug for ApiOverview
impl Debug for ApiOverview
Source§impl Default for ApiOverview
impl Default for ApiOverview
Source§fn default() -> ApiOverview
fn default() -> ApiOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiOverview
impl<'de> Deserialize<'de> for ApiOverview
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 ApiOverview
impl PartialEq for ApiOverview
Source§impl Serialize for ApiOverview
impl Serialize for ApiOverview
impl StructuralPartialEq for ApiOverview
Auto Trait Implementations§
impl Freeze for ApiOverview
impl RefUnwindSafe for ApiOverview
impl Send for ApiOverview
impl Sync for ApiOverview
impl Unpin for ApiOverview
impl UnwindSafe for ApiOverview
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