pub struct GithubMetadata {
pub environment_name: Option<String>,
pub organization_name: Option<String>,
pub repository: Option<String>,
pub repository_access: Option<String>,
pub scope: Option<String>,
pub selected_repositories: Option<String>,
}Fields§
§environment_name: Option<String>§organization_name: Option<String>§repository: Option<String>§repository_access: Option<String>§scope: Option<String>§selected_repositories: Option<String>Implementations§
Source§impl GithubMetadata
impl GithubMetadata
pub fn new() -> GithubMetadata
Trait Implementations§
Source§impl Clone for GithubMetadata
impl Clone for GithubMetadata
Source§fn clone(&self) -> GithubMetadata
fn clone(&self) -> GithubMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GithubMetadata
impl Debug for GithubMetadata
Source§impl Default for GithubMetadata
impl Default for GithubMetadata
Source§fn default() -> GithubMetadata
fn default() -> GithubMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GithubMetadata
impl<'de> Deserialize<'de> for GithubMetadata
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 GithubMetadata
impl PartialEq for GithubMetadata
Source§fn eq(&self, other: &GithubMetadata) -> bool
fn eq(&self, other: &GithubMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GithubMetadata
impl Serialize for GithubMetadata
impl StructuralPartialEq for GithubMetadata
Auto Trait Implementations§
impl Freeze for GithubMetadata
impl RefUnwindSafe for GithubMetadata
impl Send for GithubMetadata
impl Sync for GithubMetadata
impl Unpin for GithubMetadata
impl UnsafeUnpin for GithubMetadata
impl UnwindSafe for GithubMetadata
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