pub struct SignerInfo {
pub name: &'static str,
pub sig_len_r: Range<usize>,
pub sec_key_len_r: Range<usize>,
pub pub_key_len_r: Range<usize>,
}Expand description
Information about a signature implementation
Fields§
§name: &'static strThe name
sig_len_r: Range<usize>The supported signature lengths
sec_key_len_r: Range<usize>The supported private key lengths
pub_key_len_r: Range<usize>The supported public key lengths
Trait Implementations§
Source§impl Clone for SignerInfo
impl Clone for SignerInfo
Source§fn clone(&self) -> SignerInfo
fn clone(&self) -> SignerInfo
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 SignerInfo
impl Debug for SignerInfo
Source§impl PartialEq for SignerInfo
impl PartialEq for SignerInfo
impl Eq for SignerInfo
impl StructuralPartialEq for SignerInfo
Auto Trait Implementations§
impl Freeze for SignerInfo
impl RefUnwindSafe for SignerInfo
impl Send for SignerInfo
impl Sync for SignerInfo
impl Unpin for SignerInfo
impl UnwindSafe for SignerInfo
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