pub struct SubmitPartialCheckpointSignatureResponse {
pub accepted: bool,
pub reason: Option<String>,
}Expand description
Response for SubmitPartialCheckpointSignatureRequest.
Fields§
§accepted: boolWhether the signature was admitted to the pool.
reason: Option<String>Optional rejection reason.
Trait Implementations§
Source§impl Clone for SubmitPartialCheckpointSignatureResponse
impl Clone for SubmitPartialCheckpointSignatureResponse
Source§fn clone(&self) -> SubmitPartialCheckpointSignatureResponse
fn clone(&self) -> SubmitPartialCheckpointSignatureResponse
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<'de> Deserialize<'de> for SubmitPartialCheckpointSignatureResponse
impl<'de> Deserialize<'de> for SubmitPartialCheckpointSignatureResponse
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 SubmitPartialCheckpointSignatureResponse
impl RefUnwindSafe for SubmitPartialCheckpointSignatureResponse
impl Send for SubmitPartialCheckpointSignatureResponse
impl Sync for SubmitPartialCheckpointSignatureResponse
impl Unpin for SubmitPartialCheckpointSignatureResponse
impl UnsafeUnpin for SubmitPartialCheckpointSignatureResponse
impl UnwindSafe for SubmitPartialCheckpointSignatureResponse
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