pub struct UserIdPacket {
pub user_id: String,
}Expand description
A parsed User ID packet.
Contains a single UTF-8 string identifying the key owner.
Fields§
§user_id: StringThe user ID string (typically “Name <email>”).
Trait Implementations§
Source§impl Clone for UserIdPacket
impl Clone for UserIdPacket
Source§fn clone(&self) -> UserIdPacket
fn clone(&self) -> UserIdPacket
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 moreAuto Trait Implementations§
impl Freeze for UserIdPacket
impl RefUnwindSafe for UserIdPacket
impl Send for UserIdPacket
impl Sync for UserIdPacket
impl Unpin for UserIdPacket
impl UnsafeUnpin for UserIdPacket
impl UnwindSafe for UserIdPacket
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