pub struct PullRequestHeadRepoOwner {Show 18 fields
pub avatar_url: String,
pub events_url: String,
pub followers_url: String,
pub following_url: String,
pub gists_url: String,
pub gravatar_id: Option<String>,
pub html_url: String,
pub id: i32,
pub node_id: String,
pub login: String,
pub organizations_url: String,
pub received_events_url: String,
pub repos_url: String,
pub site_admin: bool,
pub starred_url: String,
pub subscriptions_url: String,
pub type: String,
pub url: String,
}
Fields§
§avatar_url: String
§events_url: String
§followers_url: String
§following_url: String
§gists_url: String
§gravatar_id: Option<String>
§html_url: String
§id: i32
§node_id: String
§login: String
§organizations_url: String
§received_events_url: String
§repos_url: String
§site_admin: bool
§starred_url: String
§subscriptions_url: String
§type: String
§url: String
Implementations§
Source§impl PullRequestHeadRepoOwner
impl PullRequestHeadRepoOwner
pub fn new( avatar_url: String, events_url: String, followers_url: String, following_url: String, gists_url: String, gravatar_id: Option<String>, html_url: String, id: i32, node_id: String, login: String, organizations_url: String, received_events_url: String, repos_url: String, site_admin: bool, starred_url: String, subscriptions_url: String, type: String, url: String, ) -> PullRequestHeadRepoOwner
Trait Implementations§
Source§impl Clone for PullRequestHeadRepoOwner
impl Clone for PullRequestHeadRepoOwner
Source§fn clone(&self) -> PullRequestHeadRepoOwner
fn clone(&self) -> PullRequestHeadRepoOwner
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 PullRequestHeadRepoOwner
impl Debug for PullRequestHeadRepoOwner
Source§impl Default for PullRequestHeadRepoOwner
impl Default for PullRequestHeadRepoOwner
Source§fn default() -> PullRequestHeadRepoOwner
fn default() -> PullRequestHeadRepoOwner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestHeadRepoOwner
impl<'de> Deserialize<'de> for PullRequestHeadRepoOwner
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 PullRequestHeadRepoOwner
impl PartialEq for PullRequestHeadRepoOwner
Source§impl Serialize for PullRequestHeadRepoOwner
impl Serialize for PullRequestHeadRepoOwner
impl StructuralPartialEq for PullRequestHeadRepoOwner
Auto Trait Implementations§
impl Freeze for PullRequestHeadRepoOwner
impl RefUnwindSafe for PullRequestHeadRepoOwner
impl Send for PullRequestHeadRepoOwner
impl Sync for PullRequestHeadRepoOwner
impl Unpin for PullRequestHeadRepoOwner
impl UnwindSafe for PullRequestHeadRepoOwner
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