pub struct MetaReview {
pub meta_reviewer: String,
pub target_reviewer: String,
pub approve: bool,
}Expand description
A meta-review (thumbs up/down on another reviewer’s review).
Fields§
§meta_reviewer: String§target_reviewer: String§approve: boolTrait Implementations§
Source§impl Clone for MetaReview
impl Clone for MetaReview
Source§fn clone(&self) -> MetaReview
fn clone(&self) -> MetaReview
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 MetaReview
impl Debug for MetaReview
Source§impl<'de> Deserialize<'de> for MetaReview
impl<'de> Deserialize<'de> for MetaReview
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 MetaReview
impl RefUnwindSafe for MetaReview
impl Send for MetaReview
impl Sync for MetaReview
impl Unpin for MetaReview
impl UnsafeUnpin for MetaReview
impl UnwindSafe for MetaReview
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