pub struct Ed25519KeyHashes(_);
Implementations§
source§impl Ed25519KeyHashes
impl Ed25519KeyHashes
pub fn from_bytes(bytes: Vec<u8>) -> Result<Ed25519KeyHashes, DeserializeError>
source§impl Ed25519KeyHashes
impl Ed25519KeyHashes
pub fn from_hex(hex_str: &str) -> Result<Ed25519KeyHashes, DeserializeError>
Trait Implementations§
source§impl Clone for Ed25519KeyHashes
impl Clone for Ed25519KeyHashes
source§fn clone(&self) -> Ed25519KeyHashes
fn clone(&self) -> Ed25519KeyHashes
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 Ed25519KeyHashes
impl Debug for Ed25519KeyHashes
source§impl<'de> Deserialize<'de> for Ed25519KeyHashes
impl<'de> Deserialize<'de> for Ed25519KeyHashes
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 From<&Ed25519KeyHashes> for RequiredSignersSet
impl From<&Ed25519KeyHashes> for RequiredSignersSet
source§fn from(keys: &Ed25519KeyHashes) -> Self
fn from(keys: &Ed25519KeyHashes) -> Self
Converts to this type from the input type.
source§impl Hash for Ed25519KeyHashes
impl Hash for Ed25519KeyHashes
source§impl IntoIterator for Ed25519KeyHashes
impl IntoIterator for Ed25519KeyHashes
§type Item = Ed25519KeyHash
type Item = Ed25519KeyHash
The type of the elements being iterated over.
§type IntoIter = IntoIter<<Ed25519KeyHashes as IntoIterator>::Item, Global>
type IntoIter = IntoIter<<Ed25519KeyHashes as IntoIterator>::Item, Global>
Which kind of iterator are we turning this into?
source§impl JsonSchema for Ed25519KeyHashes
impl JsonSchema for Ed25519KeyHashes
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl Ord for Ed25519KeyHashes
impl Ord for Ed25519KeyHashes
source§fn cmp(&self, other: &Ed25519KeyHashes) -> Ordering
fn cmp(&self, other: &Ed25519KeyHashes) -> 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<Ed25519KeyHashes> for Ed25519KeyHashes
impl PartialEq<Ed25519KeyHashes> for Ed25519KeyHashes
source§fn eq(&self, other: &Ed25519KeyHashes) -> bool
fn eq(&self, other: &Ed25519KeyHashes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<Ed25519KeyHashes> for Ed25519KeyHashes
impl PartialOrd<Ed25519KeyHashes> for Ed25519KeyHashes
source§fn partial_cmp(&self, other: &Ed25519KeyHashes) -> Option<Ordering>
fn partial_cmp(&self, other: &Ed25519KeyHashes) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for Ed25519KeyHashes
impl Serialize for Ed25519KeyHashes
source§impl Serialize for Ed25519KeyHashes
impl Serialize for Ed25519KeyHashes
fn serialize<'se, W: Write>( &self, serializer: &'se mut Serializer<W> ) -> Result<&'se mut Serializer<W>>
impl Eq for Ed25519KeyHashes
impl StructuralEq for Ed25519KeyHashes
impl StructuralPartialEq for Ed25519KeyHashes
Auto Trait Implementations§
impl RefUnwindSafe for Ed25519KeyHashes
impl Send for Ed25519KeyHashes
impl Sync for Ed25519KeyHashes
impl Unpin for Ed25519KeyHashes
impl UnwindSafe for Ed25519KeyHashes
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