pub enum SpendingCondition {
Sigs(TimelockedSigs),
}Variants§
Sigs(TimelockedSigs)
Implementations§
Source§impl SpendingCondition
impl SpendingCondition
pub fn all() -> SpendingCondition
pub fn at_least(sigs: u16) -> SpendingCondition
pub fn anybody_after_date(date: DateTime<Utc>) -> SpendingCondition
pub fn after_date(sigs: SigsReq, date: DateTime<Utc>) -> SpendingCondition
pub fn policy( &self, signers: &[Signer], terminal: &DerivationSubpath<TerminalStep>, ) -> Policy<DerivationAccount>
Trait Implementations§
Source§impl Clone for SpendingCondition
impl Clone for SpendingCondition
Source§fn clone(&self) -> SpendingCondition
fn clone(&self) -> SpendingCondition
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 SpendingCondition
impl Debug for SpendingCondition
Source§impl Default for SpendingCondition
impl Default for SpendingCondition
Source§impl<'de> Deserialize<'de> for SpendingCondition
impl<'de> Deserialize<'de> for SpendingCondition
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 Display for SpendingCondition
impl Display for SpendingCondition
Source§impl From<TimelockedSigs> for SpendingCondition
impl From<TimelockedSigs> for SpendingCondition
Source§fn from(v: TimelockedSigs) -> Self
fn from(v: TimelockedSigs) -> Self
Converts to this type from the input type.
Source§impl Hash for SpendingCondition
impl Hash for SpendingCondition
Source§impl Ord for SpendingCondition
impl Ord for SpendingCondition
Source§fn cmp(&self, other: &SpendingCondition) -> Ordering
fn cmp(&self, other: &SpendingCondition) -> 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 SpendingCondition
impl PartialEq for SpendingCondition
Source§impl PartialOrd for SpendingCondition
impl PartialOrd for SpendingCondition
Source§impl Serialize for SpendingCondition
impl Serialize for SpendingCondition
Source§impl StrictDecode for SpendingCondition
impl StrictDecode for SpendingCondition
Source§fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
Decode with the given
std::io::Read instance; must either
construct an instance or return implementation-specific error type.Source§fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
Tries to deserialize byte array into the current type using
StrictDecode::strict_decode. If there are some data remains in the
buffer once deserialization is completed, fails with
Error::DataNotEntirelyConsumed. Use io::Cursor over the buffer and
StrictDecode::strict_decode to avoid such failures.Source§fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
Reads data from file at
path and reconstructs object from it. Fails
with Error::DataNotEntirelyConsumed if file contains remaining
data after the object reconstruction.Source§impl StrictEncode for SpendingCondition
impl StrictEncode for SpendingCondition
Source§fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
Encode with the given
std::io::Write instance; must return result
with either amount of bytes encoded – or implementation-specific
error type.Source§fn strict_serialize(&self) -> Result<Vec<u8>, Error>
fn strict_serialize(&self) -> Result<Vec<u8>, Error>
Serializes data as a byte array using
StrictEncode::strict_encode
functionimpl Eq for SpendingCondition
impl StructuralPartialEq for SpendingCondition
Auto Trait Implementations§
impl Freeze for SpendingCondition
impl RefUnwindSafe for SpendingCondition
impl Send for SpendingCondition
impl Sync for SpendingCondition
impl Unpin for SpendingCondition
impl UnwindSafe for SpendingCondition
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.