pub struct ReviewQueue {
pub count: Option<i32>,
pub queue: Option<Vec<Waiting>>,
}Fields§
§count: Option<i32>Count is how many founders are waiting.
queue: Option<Vec<Waiting>>Queue is one entry per unsettled founder, oldest formation first.
Implementations§
Source§impl ReviewQueue
impl ReviewQueue
pub fn new() -> ReviewQueue
Trait Implementations§
Source§impl Clone for ReviewQueue
impl Clone for ReviewQueue
Source§fn clone(&self) -> ReviewQueue
fn clone(&self) -> ReviewQueue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReviewQueue
impl Debug for ReviewQueue
Source§impl Default for ReviewQueue
impl Default for ReviewQueue
Source§fn default() -> ReviewQueue
fn default() -> ReviewQueue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewQueue
impl<'de> Deserialize<'de> for ReviewQueue
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 ReviewQueue
impl PartialEq for ReviewQueue
Source§impl Serialize for ReviewQueue
impl Serialize for ReviewQueue
impl StructuralPartialEq for ReviewQueue
Auto Trait Implementations§
impl Freeze for ReviewQueue
impl RefUnwindSafe for ReviewQueue
impl Send for ReviewQueue
impl Sync for ReviewQueue
impl Unpin for ReviewQueue
impl UnsafeUnpin for ReviewQueue
impl UnwindSafe for ReviewQueue
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