Trait gpgme::data::IntoData[][src]

pub trait IntoData<'a> {
    type Output: BorrowMut<Data<'a>>;
    fn into_data(self) -> Result<Self::Output>;
}

Associated Types

Required Methods

Implementations on Foreign Types

impl<'a> IntoData<'a> for &'a [u8]
[src]

impl<'a> IntoData<'a> for &'a Vec<u8>
[src]

impl<'a> IntoData<'a> for &'a mut Vec<u8>
[src]

impl IntoData<'static> for Vec<u8>
[src]

impl<'a> IntoData<'a> for &'a str
[src]

impl IntoData<'static> for String
[src]

impl<'a> IntoData<'a> for &'a File
[src]

impl<'a> IntoData<'a> for &'a mut File
[src]

impl IntoData<'static> for File
[src]

Implementors