pub struct ProofDoesNotExistResponse {
pub error: String,
pub exception_id: Option<Box<ExceptionId>>,
pub message: String,
pub proof_id: Box<ProofId>,
}Expand description
ProofDoesNotExistResponse : Action: Attempt to fetch a proof with proof_id. Error: Proof with proof_id does not exist.
Fields§
§error: String§exception_id: Option<Box<ExceptionId>>§message: String§proof_id: Box<ProofId>Implementations§
Trait Implementations§
Source§impl Clone for ProofDoesNotExistResponse
impl Clone for ProofDoesNotExistResponse
Source§fn clone(&self) -> ProofDoesNotExistResponse
fn clone(&self) -> ProofDoesNotExistResponse
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 ProofDoesNotExistResponse
impl Debug for ProofDoesNotExistResponse
Source§impl Default for ProofDoesNotExistResponse
impl Default for ProofDoesNotExistResponse
Source§fn default() -> ProofDoesNotExistResponse
fn default() -> ProofDoesNotExistResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProofDoesNotExistResponse
impl<'de> Deserialize<'de> for ProofDoesNotExistResponse
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
impl StructuralPartialEq for ProofDoesNotExistResponse
Auto Trait Implementations§
impl Freeze for ProofDoesNotExistResponse
impl RefUnwindSafe for ProofDoesNotExistResponse
impl Send for ProofDoesNotExistResponse
impl Sync for ProofDoesNotExistResponse
impl Unpin for ProofDoesNotExistResponse
impl UnwindSafe for ProofDoesNotExistResponse
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