pub enum ExpectedSignatures {
SigningAlgorithmSpecUnspecified,
SigningAlgorithmSpecEd25519,
SigningAlgorithmSpecEcDsaSha256,
SigningAlgorithmSpecEcDsaSha384,
}Expand description
Details on the keys that will be used to sign the transaction (how many and of which type). Signature size impacts the cost of the transaction. If empty, the signature sizes will be approximated with threshold-many signatures (where threshold is defined in the PartyToParticipant of the external party), using keys in the order they are registered. Empty list is equivalent to not providing this field Optional: can be empty
Variants§
SigningAlgorithmSpecUnspecified
SigningAlgorithmSpecEd25519
SigningAlgorithmSpecEcDsaSha256
SigningAlgorithmSpecEcDsaSha384
Trait Implementations§
Source§impl Clone for ExpectedSignatures
impl Clone for ExpectedSignatures
Source§fn clone(&self) -> ExpectedSignatures
fn clone(&self) -> ExpectedSignatures
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExpectedSignatures
Source§impl Debug for ExpectedSignatures
impl Debug for ExpectedSignatures
Source§impl Default for ExpectedSignatures
impl Default for ExpectedSignatures
Source§fn default() -> ExpectedSignatures
fn default() -> ExpectedSignatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpectedSignatures
impl<'de> Deserialize<'de> for ExpectedSignatures
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
impl Eq for ExpectedSignatures
Source§impl Hash for ExpectedSignatures
impl Hash for ExpectedSignatures
Source§impl Ord for ExpectedSignatures
impl Ord for ExpectedSignatures
Source§fn cmp(&self, other: &ExpectedSignatures) -> Ordering
fn cmp(&self, other: &ExpectedSignatures) -> Ordering
1.21.0 (const: unstable) · 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 ExpectedSignatures
impl PartialEq for ExpectedSignatures
Source§impl PartialOrd for ExpectedSignatures
impl PartialOrd for ExpectedSignatures
Source§impl Serialize for ExpectedSignatures
impl Serialize for ExpectedSignatures
impl StructuralPartialEq for ExpectedSignatures
Auto Trait Implementations§
impl Freeze for ExpectedSignatures
impl RefUnwindSafe for ExpectedSignatures
impl Send for ExpectedSignatures
impl Sync for ExpectedSignatures
impl Unpin for ExpectedSignatures
impl UnsafeUnpin for ExpectedSignatures
impl UnwindSafe for ExpectedSignatures
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