pub struct GpgKey(/* private fields */);Expand description
OpenPGP support
Implementations§
Source§impl GpgKey
impl GpgKey
pub fn get<'a>(&self, client: &'a dyn Client) -> Result<GpgKeyFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &GpgKeyFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &GpgKeyDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GpgKey
impl RefUnwindSafe for GpgKey
impl Send for GpgKey
impl Sync for GpgKey
impl Unpin for GpgKey
impl UnwindSafe for GpgKey
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