pub struct ClusterUtxos {
pub utxos: Vec<ClusterUtxo>,
}
Fields§
§utxos: Vec<ClusterUtxo>
Trait Implementations§
Source§impl Clone for ClusterUtxos
impl Clone for ClusterUtxos
Source§fn clone(&self) -> ClusterUtxos
fn clone(&self) -> ClusterUtxos
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 ClusterUtxos
impl Debug for ClusterUtxos
Source§impl<'de> Deserialize<'de> for ClusterUtxos
impl<'de> Deserialize<'de> for ClusterUtxos
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 FromRedisValue for ClusterUtxos
impl FromRedisValue for ClusterUtxos
Source§fn from_redis_value(v: &Value) -> RedisResult<Self>
fn from_redis_value(v: &Value) -> RedisResult<Self>
Given a redis
Value
this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated.Source§fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
Similar to
from_redis_value
but constructs a vector of objects
from another vector of values. This primarily exists internally
to customize the behavior for vectors of tuples.Auto Trait Implementations§
impl Freeze for ClusterUtxos
impl RefUnwindSafe for ClusterUtxos
impl Send for ClusterUtxos
impl Sync for ClusterUtxos
impl Unpin for ClusterUtxos
impl UnwindSafe for ClusterUtxos
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