pub struct AddNodeResponse {
pub value: (),
}Expand description
Response for the AddNode RPC method
This method returns a primitive value wrapped in a transparent struct.
Fields§
§value: ()Wrapped primitive value
Trait Implementations§
Source§impl AsRef<()> for AddNodeResponse
impl AsRef<()> for AddNodeResponse
Source§impl Clone for AddNodeResponse
impl Clone for AddNodeResponse
Source§fn clone(&self) -> AddNodeResponse
fn clone(&self) -> AddNodeResponse
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 AddNodeResponse
impl Debug for AddNodeResponse
Source§impl Deref for AddNodeResponse
impl Deref for AddNodeResponse
Source§impl DerefMut for AddNodeResponse
impl DerefMut for AddNodeResponse
Source§impl<'de> Deserialize<'de> for AddNodeResponse
impl<'de> Deserialize<'de> for AddNodeResponse
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<()> for AddNodeResponse
impl From<()> for AddNodeResponse
Source§impl From<AddNodeResponse> for ()
impl From<AddNodeResponse> for ()
Source§fn from(wrapper: AddNodeResponse) -> Self
fn from(wrapper: AddNodeResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddNodeResponse
impl PartialEq for AddNodeResponse
Source§impl Serialize for AddNodeResponse
impl Serialize for AddNodeResponse
impl StructuralPartialEq for AddNodeResponse
Auto Trait Implementations§
impl Freeze for AddNodeResponse
impl RefUnwindSafe for AddNodeResponse
impl Send for AddNodeResponse
impl Sync for AddNodeResponse
impl Unpin for AddNodeResponse
impl UnwindSafe for AddNodeResponse
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