pub struct ProofCannotBeCreatedResponse {
pub error: String,
pub exception_id: Option<Box<ExceptionId>>,
pub message: Option<String>,
}Expand description
ProofCannotBeCreatedResponse : Action: Attempt to create a proof with invalid input. Error: The proof cannot be created with the given input.
Fields§
§error: String§exception_id: Option<Box<ExceptionId>>§message: Option<String>Implementations§
Source§impl ProofCannotBeCreatedResponse
impl ProofCannotBeCreatedResponse
Sourcepub fn new(error: String) -> ProofCannotBeCreatedResponse
pub fn new(error: String) -> ProofCannotBeCreatedResponse
Action: Attempt to create a proof with invalid input. Error: The proof cannot be created with the given input.
Trait Implementations§
Source§impl Clone for ProofCannotBeCreatedResponse
impl Clone for ProofCannotBeCreatedResponse
Source§fn clone(&self) -> ProofCannotBeCreatedResponse
fn clone(&self) -> ProofCannotBeCreatedResponse
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 ProofCannotBeCreatedResponse
impl Debug for ProofCannotBeCreatedResponse
Source§impl Default for ProofCannotBeCreatedResponse
impl Default for ProofCannotBeCreatedResponse
Source§fn default() -> ProofCannotBeCreatedResponse
fn default() -> ProofCannotBeCreatedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProofCannotBeCreatedResponse
impl<'de> Deserialize<'de> for ProofCannotBeCreatedResponse
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 ProofCannotBeCreatedResponse
impl PartialEq for ProofCannotBeCreatedResponse
Source§fn eq(&self, other: &ProofCannotBeCreatedResponse) -> bool
fn eq(&self, other: &ProofCannotBeCreatedResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProofCannotBeCreatedResponse
Auto Trait Implementations§
impl Freeze for ProofCannotBeCreatedResponse
impl RefUnwindSafe for ProofCannotBeCreatedResponse
impl Send for ProofCannotBeCreatedResponse
impl Sync for ProofCannotBeCreatedResponse
impl Unpin for ProofCannotBeCreatedResponse
impl UnwindSafe for ProofCannotBeCreatedResponse
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