pub struct PrUrl {
pub owner: String,
pub repo: String,
pub number: u64,
}Expand description
Parsed components of a GitHub PR URL.
Fields§
§owner: StringRepository owner.
repo: StringRepository name.
number: u64Pull request number.
Trait Implementations§
impl Eq for PrUrl
impl StructuralPartialEq for PrUrl
Auto Trait Implementations§
impl Freeze for PrUrl
impl RefUnwindSafe for PrUrl
impl Send for PrUrl
impl Sync for PrUrl
impl Unpin for PrUrl
impl UnsafeUnpin for PrUrl
impl UnwindSafe for PrUrl
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.