pub struct GenericCsvConvert;Available on crate feature
import only.Expand description
Convert from generic password records.
Trait Implementations§
Source§impl Convert for GenericCsvConvert
impl Convert for GenericCsvConvert
Source§type Input = Vec<GenericCsvEntry>
type Input = Vec<GenericCsvEntry>
Input type for the conversion.
Source§fn convert<'life0, 'life1, 'async_trait>(
&'life0 self,
source: Self::Input,
vault: Vault,
key: &'life1 AccessKey,
) -> Pin<Box<dyn Future<Output = Result<Vault, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn convert<'life0, 'life1, 'async_trait>(
&'life0 self,
source: Self::Input,
vault: Vault,
key: &'life1 AccessKey,
) -> Pin<Box<dyn Future<Output = Result<Vault, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Write the input secrets to the given vault.
Auto Trait Implementations§
impl Freeze for GenericCsvConvert
impl RefUnwindSafe for GenericCsvConvert
impl Send for GenericCsvConvert
impl Sync for GenericCsvConvert
impl Unpin for GenericCsvConvert
impl UnwindSafe for GenericCsvConvert
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