pub struct TlockPluginHandler { /* private fields */ }Expand description
Plugin handler for age-plugin-tlock
Implementations§
Trait Implementations§
Source§impl PluginHandler for TlockPluginHandler
impl PluginHandler for TlockPluginHandler
Source§type RecipientV1 = RecipientPlugin
type RecipientV1 = RecipientPlugin
The plugin’s
recipient-v1 implementation.Source§type IdentityV1 = IdentityPlugin
type IdentityV1 = IdentityPlugin
The plugin’s
identity-v1 implementation.Source§fn recipient_v1(self) -> Result<Self::RecipientV1>
fn recipient_v1(self) -> Result<Self::RecipientV1>
Returns an instance of the plugin’s
recipient-v1 implementation.Source§fn identity_v1(self) -> Result<Self::IdentityV1>
fn identity_v1(self) -> Result<Self::IdentityV1>
Returns an instance of the plugin’s
identity-v1 implementation.Auto Trait Implementations§
impl Freeze for TlockPluginHandler
impl RefUnwindSafe for TlockPluginHandler
impl Send for TlockPluginHandler
impl Sync for TlockPluginHandler
impl Unpin for TlockPluginHandler
impl UnsafeUnpin for TlockPluginHandler
impl UnwindSafe for TlockPluginHandler
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more