pub struct ProofOfReserves {
pub utxo: Outpoint,
pub proof: SmallBlob,
}
Fields§
§utxo: Outpoint
§proof: SmallBlob
Implementations§
Source§impl ProofOfReserves
impl ProofOfReserves
pub fn new(utxo: Outpoint, proof: SmallBlob) -> ProofOfReserves
Trait Implementations§
Source§impl Clone for ProofOfReserves
impl Clone for ProofOfReserves
Source§fn clone(&self) -> ProofOfReserves
fn clone(&self) -> ProofOfReserves
Returns a copy 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 ProofOfReserves
impl Debug for ProofOfReserves
Source§impl<'de> Deserialize<'de> for ProofOfReserves
impl<'de> Deserialize<'de> for ProofOfReserves
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 Hash for ProofOfReserves
impl Hash for ProofOfReserves
Source§impl Ord for ProofOfReserves
impl Ord for ProofOfReserves
Source§fn cmp(&self, other: &ProofOfReserves) -> Ordering
fn cmp(&self, other: &ProofOfReserves) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProofOfReserves
impl PartialEq for ProofOfReserves
Source§impl PartialOrd for ProofOfReserves
impl PartialOrd for ProofOfReserves
Source§impl Serialize for ProofOfReserves
impl Serialize for ProofOfReserves
Source§impl StrictDecode for ProofOfReserves
impl StrictDecode for ProofOfReserves
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(lim: usize, reader: impl Read) -> Result<Self, DecodeError>
Source§impl StrictDeserialize for ProofOfReserves
impl StrictDeserialize for ProofOfReserves
fn from_strict_serialized<const MAX: usize>( ast_data: Confined<Vec<u8>, 0, MAX>, ) -> Result<Self, DeserializeError>
fn strict_deserialize_from_file<const MAX: usize>( path: impl AsRef<Path>, ) -> Result<Self, DeserializeError>
Source§impl StrictDumb for ProofOfReserves
impl StrictDumb for ProofOfReserves
fn strict_dumb() -> Self
Source§impl StrictEncode for ProofOfReserves
impl StrictEncode for ProofOfReserves
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, lim: usize, writer: impl Write) -> Result<usize, Error>
Source§impl StrictSerialize for ProofOfReserves
impl StrictSerialize for ProofOfReserves
fn strict_serialized_len(&self) -> Result<usize, Error>
fn to_strict_serialized<const MAX: usize>( &self, ) -> Result<Confined<Vec<u8>, 0, MAX>, SerializeError>
fn strict_serialize_to_file<const MAX: usize>( &self, path: impl AsRef<Path>, ) -> Result<(), SerializeError>
Source§impl StrictStruct for ProofOfReserves
impl StrictStruct for ProofOfReserves
const ALL_FIELDS: &'static [&'static str]
fn strict_check_fields()
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictType for ProofOfReserves
impl StrictType for ProofOfReserves
const STRICT_LIB_NAME: &'static str = LIB_NAME_RGB_CONTRACT
fn strict_name() -> Option<TypeName>
impl Eq for ProofOfReserves
impl StrictProduct for ProofOfReserves
impl StructuralPartialEq for ProofOfReserves
Auto Trait Implementations§
impl Freeze for ProofOfReserves
impl RefUnwindSafe for ProofOfReserves
impl Send for ProofOfReserves
impl Sync for ProofOfReserves
impl Unpin for ProofOfReserves
impl UnwindSafe for ProofOfReserves
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.