pub struct ProofStatusResponse {
pub proof_id: String,
pub status: JobStatus,
pub finished_processing: bool,
}Expand description
ProofStatusResponse : Response for getting proof status.
Fields§
§proof_id: StringA unique identifier generated for the proof. UUID4 format.
status: JobStatusThe status of the proof job.
finished_processing: boolThe job is finished processing and waiting/polling can be terminated.
Implementations§
Trait Implementations§
Source§impl Clone for ProofStatusResponse
impl Clone for ProofStatusResponse
Source§fn clone(&self) -> ProofStatusResponse
fn clone(&self) -> ProofStatusResponse
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 ProofStatusResponse
impl Debug for ProofStatusResponse
Source§impl Default for ProofStatusResponse
impl Default for ProofStatusResponse
Source§fn default() -> ProofStatusResponse
fn default() -> ProofStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProofStatusResponse
impl<'de> Deserialize<'de> for ProofStatusResponse
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 ProofStatusResponse
impl PartialEq for ProofStatusResponse
Source§impl Serialize for ProofStatusResponse
impl Serialize for ProofStatusResponse
impl StructuralPartialEq for ProofStatusResponse
Auto Trait Implementations§
impl Freeze for ProofStatusResponse
impl RefUnwindSafe for ProofStatusResponse
impl Send for ProofStatusResponse
impl Sync for ProofStatusResponse
impl Unpin for ProofStatusResponse
impl UnwindSafe for ProofStatusResponse
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