pub struct PutProfile {
pub token: String,
pub profile: Profile,
}Expand description
Request for putting Profile to the keyserver.
Fields§
§token: StringPOP token attached to the request.
profile: ProfileThe Profile to be put.
Trait Implementations§
Source§impl Clone for PutProfile
impl Clone for PutProfile
Source§fn clone(&self) -> PutProfile
fn clone(&self) -> PutProfile
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 PutProfile
impl RefUnwindSafe for PutProfile
impl Send for PutProfile
impl Sync for PutProfile
impl Unpin for PutProfile
impl UnsafeUnpin for PutProfile
impl UnwindSafe for PutProfile
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