pub struct LocalKeyId(pub Vec<u8>);Expand description
Wrapper for a local key id
Tuple Fields§
§0: Vec<u8>Trait Implementations§
Source§impl AsRef<[u8]> for LocalKeyId
impl AsRef<[u8]> for LocalKeyId
Source§impl Clone for LocalKeyId
impl Clone for LocalKeyId
Source§fn clone(&self) -> LocalKeyId
fn clone(&self) -> LocalKeyId
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 LocalKeyId
impl Debug for LocalKeyId
impl Eq for LocalKeyId
Source§impl From<&[u8]> for LocalKeyId
impl From<&[u8]> for LocalKeyId
Source§impl From<&str> for LocalKeyId
impl From<&str> for LocalKeyId
Source§impl From<String> for LocalKeyId
impl From<String> for LocalKeyId
Source§impl PartialEq for LocalKeyId
impl PartialEq for LocalKeyId
Source§fn eq(&self, other: &LocalKeyId) -> bool
fn eq(&self, other: &LocalKeyId) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LocalKeyId
Auto Trait Implementations§
impl Freeze for LocalKeyId
impl RefUnwindSafe for LocalKeyId
impl Send for LocalKeyId
impl Sync for LocalKeyId
impl Unpin for LocalKeyId
impl UnsafeUnpin for LocalKeyId
impl UnwindSafe for LocalKeyId
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self into the result. Upper case
letters are used (e.g. F9B4CA)