pub struct SignalReport {
pub schema: String,
pub frontier: String,
pub signals: Vec<SignalItem>,
pub review_queue: Vec<ReviewQueueItem>,
pub proof_readiness: ProofReadiness,
}Fields§
§schema: String§frontier: String§signals: Vec<SignalItem>§review_queue: Vec<ReviewQueueItem>§proof_readiness: ProofReadinessTrait Implementations§
Source§impl Clone for SignalReport
impl Clone for SignalReport
Source§fn clone(&self) -> SignalReport
fn clone(&self) -> SignalReport
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 SignalReport
impl Debug for SignalReport
Source§impl<'de> Deserialize<'de> for SignalReport
impl<'de> Deserialize<'de> for SignalReport
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 SignalReport
impl RefUnwindSafe for SignalReport
impl Send for SignalReport
impl Sync for SignalReport
impl Unpin for SignalReport
impl UnsafeUnpin for SignalReport
impl UnwindSafe for SignalReport
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