pub struct ListLockUnspent(pub Vec<ListLockUnspentItem>);Expand description
Result of the JSON-RPC method listlockunspent.
listlockunspent
Returns list of temporarily unspendable outputs. See the lockunspent call to lock and unlock transactions for spending.
Tuple Fields§
§0: Vec<ListLockUnspentItem>Implementations§
Source§impl ListLockUnspent
impl ListLockUnspent
Sourcepub fn into_model(self) -> Result<ListLockUnspent, ListLockUnspentItemError>
pub fn into_model(self) -> Result<ListLockUnspent, ListLockUnspentItemError>
Converts version specific type to a version nonspecific, more strongly typed type.
Trait Implementations§
Source§impl Clone for ListLockUnspent
impl Clone for ListLockUnspent
Source§fn clone(&self) -> ListLockUnspent
fn clone(&self) -> ListLockUnspent
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 ListLockUnspent
impl Debug for ListLockUnspent
Source§impl<'de> Deserialize<'de> for ListLockUnspent
impl<'de> Deserialize<'de> for ListLockUnspent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListLockUnspent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListLockUnspent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListLockUnspent
impl PartialEq for ListLockUnspent
Source§impl Serialize for ListLockUnspent
impl Serialize for ListLockUnspent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ListLockUnspent
Auto Trait Implementations§
impl Freeze for ListLockUnspent
impl RefUnwindSafe for ListLockUnspent
impl Send for ListLockUnspent
impl Sync for ListLockUnspent
impl Unpin for ListLockUnspent
impl UnsafeUnpin for ListLockUnspent
impl UnwindSafe for ListLockUnspent
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