pub struct Entry {
pub key_id: KeyId,
pub primitive: Primitive,
pub prefix: Vec<u8>,
pub prefix_type: OutputPrefixType,
pub status: KeyStatusType,
}
Expand description
Entry
represents a single entry in the keyset. In addition to the actual
primitive, it holds the identifier and status of the primitive.
Fields§
§key_id: KeyId
§primitive: Primitive
§prefix: Vec<u8>
§prefix_type: OutputPrefixType
§status: KeyStatusType
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl !RefUnwindSafe for Entry
impl !Send for Entry
impl !Sync for Entry
impl Unpin for Entry
impl !UnwindSafe for Entry
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