pub struct UtxosChangedScope {
pub addresses: Vec<Address>,
}Fields§
§addresses: Vec<Address>Implementations§
Trait Implementations§
Source§impl BorshDeserialize for UtxosChangedScope
impl BorshDeserialize for UtxosChangedScope
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl BorshSerialize for UtxosChangedScope
impl BorshSerialize for UtxosChangedScope
Source§impl Clone for UtxosChangedScope
impl Clone for UtxosChangedScope
Source§fn clone(&self) -> UtxosChangedScope
fn clone(&self) -> UtxosChangedScope
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UtxosChangedScope
impl Debug for UtxosChangedScope
Source§impl Default for UtxosChangedScope
impl Default for UtxosChangedScope
Source§fn default() -> UtxosChangedScope
fn default() -> UtxosChangedScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UtxosChangedScope
impl<'de> Deserialize<'de> for UtxosChangedScope
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 Deserializer for UtxosChangedScope
impl Deserializer for UtxosChangedScope
Source§impl Display for UtxosChangedScope
impl Display for UtxosChangedScope
Source§impl From<UtxosChangedScope> for Scope
impl From<UtxosChangedScope> for Scope
Source§fn from(value: UtxosChangedScope) -> Self
fn from(value: UtxosChangedScope) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UtxosChangedScope
impl PartialEq for UtxosChangedScope
Source§impl Serialize for UtxosChangedScope
impl Serialize for UtxosChangedScope
Source§impl Serializer for UtxosChangedScope
impl Serializer for UtxosChangedScope
impl Eq for UtxosChangedScope
Auto Trait Implementations§
impl Freeze for UtxosChangedScope
impl RefUnwindSafe for UtxosChangedScope
impl Send for UtxosChangedScope
impl Sync for UtxosChangedScope
impl Unpin for UtxosChangedScope
impl UnwindSafe for UtxosChangedScope
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<S> CastArc for Swhere
S: CastFromSync + ?Sized,
impl<S> CastArc for Swhere
S: CastFromSync + ?Sized,
Source§impl<T> CastFrom for Twhere
T: Any + 'static,
impl<T> CastFrom for Twhere
T: Any + 'static,
Source§fn ref_any(&self) -> &(dyn Any + 'static)
fn ref_any(&self) -> &(dyn Any + 'static)
Returns a immutable reference to
Any, which is backed by the type implementing this trait.Source§fn mut_any(&mut self) -> &mut (dyn Any + 'static)
fn mut_any(&mut self) -> &mut (dyn Any + 'static)
Returns a mutable reference to
Any, which is backed by the type implementing this trait.Source§impl<T> CastFromSync for T
impl<T> CastFromSync for T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more