pub struct PrInfo {
pub url: String,
pub number: u32,
pub title: String,
}Expand description
Pull request information for a completed feature.
Fields§
§url: StringFull URL to the pull request.
number: u32PR number in the repository.
title: StringPR title.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PrInfo
impl<'de> Deserialize<'de> for PrInfo
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 PrInfo
impl RefUnwindSafe for PrInfo
impl Send for PrInfo
impl Sync for PrInfo
impl Unpin for PrInfo
impl UnsafeUnpin for PrInfo
impl UnwindSafe for PrInfo
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