pub struct BitbucketDataCenterPullRequest {Show 18 fields
pub id: u64,
pub version: u32,
pub title: String,
pub description: Option<String>,
pub state: String,
pub open: bool,
pub closed: bool,
pub draft: Option<bool>,
pub author: BitbucketDataCenterAuthor,
pub from_ref: BitbucketDataCenterPullRequestRef,
pub to_ref: BitbucketDataCenterPullRequestRef,
pub created_date: u64,
pub updated_date: u64,
pub locked: Option<bool>,
pub reviewers: Option<Vec<Value>>,
pub participants: Option<Vec<Value>>,
pub properties: Option<HashMap<String, Value>>,
pub links: HashMap<String, Value>,
}Fields§
§id: u64§version: u32§title: String§description: Option<String>§state: String§open: bool§closed: bool§draft: Option<bool>§from_ref: BitbucketDataCenterPullRequestRef§to_ref: BitbucketDataCenterPullRequestRef§created_date: u64§updated_date: u64§locked: Option<bool>§reviewers: Option<Vec<Value>>§participants: Option<Vec<Value>>§properties: Option<HashMap<String, Value>>§links: HashMap<String, Value>Trait Implementations§
Source§impl Clone for BitbucketDataCenterPullRequest
impl Clone for BitbucketDataCenterPullRequest
Source§fn clone(&self) -> BitbucketDataCenterPullRequest
fn clone(&self) -> BitbucketDataCenterPullRequest
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<'de> Deserialize<'de> for BitbucketDataCenterPullRequest
impl<'de> Deserialize<'de> for BitbucketDataCenterPullRequest
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 BitbucketDataCenterPullRequest
impl RefUnwindSafe for BitbucketDataCenterPullRequest
impl Send for BitbucketDataCenterPullRequest
impl Sync for BitbucketDataCenterPullRequest
impl Unpin for BitbucketDataCenterPullRequest
impl UnwindSafe for BitbucketDataCenterPullRequest
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