pub struct SignatureField {
pub has_lock: bool,
pub has_seed_value: bool,
}Expand description
/FT /Sig — digital signature.
Fields§
§has_lock: bool/Lock dict presence (locks fields after signing).
has_seed_value: bool/SV (seed value) dict presence.
Trait Implementations§
Source§impl Clone for SignatureField
impl Clone for SignatureField
Source§fn clone(&self) -> SignatureField
fn clone(&self) -> SignatureField
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 moreSource§impl Debug for SignatureField
impl Debug for SignatureField
Source§impl Default for SignatureField
impl Default for SignatureField
Source§fn default() -> SignatureField
fn default() -> SignatureField
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SignatureField
impl RefUnwindSafe for SignatureField
impl Send for SignatureField
impl Sync for SignatureField
impl Unpin for SignatureField
impl UnsafeUnpin for SignatureField
impl UnwindSafe for SignatureField
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more