pub struct PRInfo {Show 14 fields
pub number: i64,
pub title: String,
pub branch: String,
pub base_branch: String,
pub author: String,
pub is_draft: bool,
pub review_decision: String,
pub ci_status: String,
pub updated_at: DateTime<Utc>,
pub expected_base: String,
pub worktree_path: Option<String>,
pub communities_touched: Vec<usize>,
pub nodes_affected: usize,
pub files_changed: Vec<String>,
}Fields§
§number: i64§title: String§branch: String§base_branch: String§is_draft: bool§review_decision: String§ci_status: String§updated_at: DateTime<Utc>§expected_base: String§worktree_path: Option<String>§communities_touched: Vec<usize>§nodes_affected: usize§files_changed: Vec<String>Implementations§
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more