pub struct PullreqReviewModel {
pub created: i64,
pub created_by: i64,
pub decision: PullreqReviewDecision,
pub id: i64,
pub pullreq_id: i64,
pub sha: String,
pub updated: i64,
}Fields§
§created: i64§created_by: i64§decision: PullreqReviewDecision§id: i64§pullreq_id: i64§sha: String§updated: i64Implementations§
Source§impl PullreqReviewModel
impl PullreqReviewModel
pub fn new( created: i64, created_by: i64, decision: PullreqReviewDecision, id: i64, pullreq_id: i64, sha: String, updated: i64, ) -> PullreqReviewModel
Trait Implementations§
Source§impl Clone for PullreqReviewModel
impl Clone for PullreqReviewModel
Source§fn clone(&self) -> PullreqReviewModel
fn clone(&self) -> PullreqReviewModel
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 PullreqReviewModel
impl Debug for PullreqReviewModel
Source§impl Default for PullreqReviewModel
impl Default for PullreqReviewModel
Source§fn default() -> PullreqReviewModel
fn default() -> PullreqReviewModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullreqReviewModel
impl<'de> Deserialize<'de> for PullreqReviewModel
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
Source§impl PartialEq for PullreqReviewModel
impl PartialEq for PullreqReviewModel
Source§impl Serialize for PullreqReviewModel
impl Serialize for PullreqReviewModel
impl StructuralPartialEq for PullreqReviewModel
Auto Trait Implementations§
impl Freeze for PullreqReviewModel
impl RefUnwindSafe for PullreqReviewModel
impl Send for PullreqReviewModel
impl Sync for PullreqReviewModel
impl Unpin for PullreqReviewModel
impl UnwindSafe for PullreqReviewModel
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