pub struct PrioritiseTransactionResponse {
pub value: bool,
}Expand description
Response for the PrioritiseTransaction RPC method
This method returns a primitive value wrapped in a transparent struct.
Fields§
§value: boolWrapped primitive value
Trait Implementations§
Source§impl AsRef<bool> for PrioritiseTransactionResponse
impl AsRef<bool> for PrioritiseTransactionResponse
Source§impl Clone for PrioritiseTransactionResponse
impl Clone for PrioritiseTransactionResponse
Source§fn clone(&self) -> PrioritiseTransactionResponse
fn clone(&self) -> PrioritiseTransactionResponse
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 PrioritiseTransactionResponse
impl<'de> Deserialize<'de> for PrioritiseTransactionResponse
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 From<PrioritiseTransactionResponse> for bool
impl From<PrioritiseTransactionResponse> for bool
Source§fn from(wrapper: PrioritiseTransactionResponse) -> Self
fn from(wrapper: PrioritiseTransactionResponse) -> Self
Converts to this type from the input type.
Source§impl From<bool> for PrioritiseTransactionResponse
impl From<bool> for PrioritiseTransactionResponse
Source§impl PartialEq for PrioritiseTransactionResponse
impl PartialEq for PrioritiseTransactionResponse
Source§fn eq(&self, other: &PrioritiseTransactionResponse) -> bool
fn eq(&self, other: &PrioritiseTransactionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrioritiseTransactionResponse
Auto Trait Implementations§
impl Freeze for PrioritiseTransactionResponse
impl RefUnwindSafe for PrioritiseTransactionResponse
impl Send for PrioritiseTransactionResponse
impl Sync for PrioritiseTransactionResponse
impl Unpin for PrioritiseTransactionResponse
impl UnwindSafe for PrioritiseTransactionResponse
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