#[non_exhaustive]pub enum EnterpriseConfig {
GithubEnterpriseConfig(String),
}
Expand description
The resource name of the enterprise config that should be applied to this source.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GithubEnterpriseConfig(String)
The full resource name of the github enterprise config.
Format:
projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}
.
projects/{project}/githubEnterpriseConfigs/{id}
.
Trait Implementations§
Source§impl Clone for EnterpriseConfig
impl Clone for EnterpriseConfig
Source§fn clone(&self) -> EnterpriseConfig
fn clone(&self) -> EnterpriseConfig
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 EnterpriseConfig
impl Debug for EnterpriseConfig
Source§impl PartialEq for EnterpriseConfig
impl PartialEq for EnterpriseConfig
impl StructuralPartialEq for EnterpriseConfig
Auto Trait Implementations§
impl Freeze for EnterpriseConfig
impl RefUnwindSafe for EnterpriseConfig
impl Send for EnterpriseConfig
impl Sync for EnterpriseConfig
impl Unpin for EnterpriseConfig
impl UnwindSafe for EnterpriseConfig
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