pub struct ExternalEntityInfoGithubMetadata {
pub repo: Option<String>,
pub owner: Option<String>,
pub number: Option<f64>,
}Expand description
Metadata about the external GitHub entity.
Fields§
§repo: Option<String>The repository name.
owner: Option<String>The owner of the repository.
number: Option<f64>The number of the issue.
Trait Implementations§
Source§impl Clone for ExternalEntityInfoGithubMetadata
impl Clone for ExternalEntityInfoGithubMetadata
Source§fn clone(&self) -> ExternalEntityInfoGithubMetadata
fn clone(&self) -> ExternalEntityInfoGithubMetadata
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 Default for ExternalEntityInfoGithubMetadata
impl Default for ExternalEntityInfoGithubMetadata
Source§fn default() -> ExternalEntityInfoGithubMetadata
fn default() -> ExternalEntityInfoGithubMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalEntityInfoGithubMetadata
impl<'de> Deserialize<'de> for ExternalEntityInfoGithubMetadata
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 ExternalEntityInfoGithubMetadata
impl RefUnwindSafe for ExternalEntityInfoGithubMetadata
impl Send for ExternalEntityInfoGithubMetadata
impl Sync for ExternalEntityInfoGithubMetadata
impl Unpin for ExternalEntityInfoGithubMetadata
impl UnwindSafe for ExternalEntityInfoGithubMetadata
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