pub struct GitHubImportSettingsInput {
pub org_login: Option<String>,
pub org_avatar_url: Option<String>,
pub repositories: Option<Vec<Box<GitHubRepoInput>>>,
pub labels: Option<Value>,
pub org_type: Option<GithubOrgType>,
}Fields§
§org_login: Option<String>The GitHub organization’s name.
org_avatar_url: Option<String>The avatar URL for the GitHub organization.
repositories: Option<Vec<Box<GitHubRepoInput>>>The names of the repositories connected for the GitHub integration.
labels: Option<Value>A map storing all available issue labels per repository
org_type: Option<GithubOrgType>The type of Github org
Trait Implementations§
Source§impl Clone for GitHubImportSettingsInput
impl Clone for GitHubImportSettingsInput
Source§fn clone(&self) -> GitHubImportSettingsInput
fn clone(&self) -> GitHubImportSettingsInput
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 GitHubImportSettingsInput
impl Debug for GitHubImportSettingsInput
Source§impl Default for GitHubImportSettingsInput
impl Default for GitHubImportSettingsInput
Source§fn default() -> GitHubImportSettingsInput
fn default() -> GitHubImportSettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitHubImportSettingsInput
impl<'de> Deserialize<'de> for GitHubImportSettingsInput
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
Auto Trait Implementations§
impl Freeze for GitHubImportSettingsInput
impl RefUnwindSafe for GitHubImportSettingsInput
impl Send for GitHubImportSettingsInput
impl Sync for GitHubImportSettingsInput
impl Unpin for GitHubImportSettingsInput
impl UnwindSafe for GitHubImportSettingsInput
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