pub struct PushAttachmentGitHubRepository {
pub description: Option<String>,
pub ref: Option<String>,
pub repo: PushGitHubRepoRef,
pub type: PushAttachmentGitHubRepositoryType,
pub url: String,
}Expand description
Pointer to a GitHub repository.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§description: Option<String>Short description of the repository
ref: Option<String>Git ref this attachment is anchored at (branch, tag, or commit). When absent the default branch is implied.
repo: PushGitHubRepoRefRepository pointer
type: PushAttachmentGitHubRepositoryTypeAttachment type discriminator
url: StringURL to the repository on GitHub
Trait Implementations§
Source§impl Clone for PushAttachmentGitHubRepository
impl Clone for PushAttachmentGitHubRepository
Source§fn clone(&self) -> PushAttachmentGitHubRepository
fn clone(&self) -> PushAttachmentGitHubRepository
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 Default for PushAttachmentGitHubRepository
impl Default for PushAttachmentGitHubRepository
Source§fn default() -> PushAttachmentGitHubRepository
fn default() -> PushAttachmentGitHubRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PushAttachmentGitHubRepository
impl<'de> Deserialize<'de> for PushAttachmentGitHubRepository
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 PushAttachmentGitHubRepository
impl RefUnwindSafe for PushAttachmentGitHubRepository
impl Send for PushAttachmentGitHubRepository
impl Sync for PushAttachmentGitHubRepository
impl Unpin for PushAttachmentGitHubRepository
impl UnsafeUnpin for PushAttachmentGitHubRepository
impl UnwindSafe for PushAttachmentGitHubRepository
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