pub struct PullRequestRepo {
pub id: u64,
pub name: String,
pub full_name: String,
}Expand description
Repository information in a pull request branch.
Fields§
§id: u64Repository ID
name: StringRepository name
full_name: StringFull repository name (owner/repo)
Trait Implementations§
Source§impl Clone for PullRequestRepo
impl Clone for PullRequestRepo
Source§fn clone(&self) -> PullRequestRepo
fn clone(&self) -> PullRequestRepo
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 PullRequestRepo
impl Debug for PullRequestRepo
Source§impl<'de> Deserialize<'de> for PullRequestRepo
impl<'de> Deserialize<'de> for PullRequestRepo
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 PullRequestRepo
impl RefUnwindSafe for PullRequestRepo
impl Send for PullRequestRepo
impl Sync for PullRequestRepo
impl Unpin for PullRequestRepo
impl UnsafeUnpin for PullRequestRepo
impl UnwindSafe for PullRequestRepo
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