pub struct WalletWatchedResult {
pub public_keys: Vec<String>,
}Expand description
control.wallet.watched — the public keys the node currently follows.
§No count field
The list is the answer, and its length is the count. A separate number could disagree with the list it is printed beside, and a client that trusted the number over the rows would reconcile against a set that was never sent.
Fields§
§public_keys: Vec<String>The enrolled public keys, lowercase 96-hex and unprefixed — the same wire form
WalletWatchParams accepts, so a client can compare what
it sent against what came back without normalizing either side.
Trait Implementations§
Source§impl Clone for WalletWatchedResult
impl Clone for WalletWatchedResult
Source§fn clone(&self) -> WalletWatchedResult
fn clone(&self) -> WalletWatchedResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WalletWatchedResult
impl Debug for WalletWatchedResult
Source§impl<'de> Deserialize<'de> for WalletWatchedResult
impl<'de> Deserialize<'de> for WalletWatchedResult
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 Eq for WalletWatchedResult
Source§impl PartialEq for WalletWatchedResult
impl PartialEq for WalletWatchedResult
Source§impl Serialize for WalletWatchedResult
impl Serialize for WalletWatchedResult
impl StructuralPartialEq for WalletWatchedResult
Auto Trait Implementations§
impl Freeze for WalletWatchedResult
impl RefUnwindSafe for WalletWatchedResult
impl Send for WalletWatchedResult
impl Sync for WalletWatchedResult
impl Unpin for WalletWatchedResult
impl UnsafeUnpin for WalletWatchedResult
impl UnwindSafe for WalletWatchedResult
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