pub struct Keys<'s> { /* private fields */ }
Expand description
A collection of keys.
Trait Implementations§
Source§impl<'s> Load<'s, SQOP<'s>> for Keys<'s>
impl<'s> Load<'s, SQOP<'s>> for Keys<'s>
Source§fn from_reader(
sop: &'s SQOP<'_>,
source: &mut (dyn Read + Send + Sync),
source_name: Option<String>,
) -> Result<Self>where
Self: Sized,
fn from_reader(
sop: &'s SQOP<'_>,
source: &mut (dyn Read + Send + Sync),
source_name: Option<String>,
) -> Result<Self>where
Self: Sized,
Loads objects like certs and keys from the given reader.
Source§fn source_name(&self) -> Option<&str>
fn source_name(&self) -> Option<&str>
Returns the source name, if any.
Source§fn from_stdin(sop: &'s S) -> Result<Self, Error>where
Self: Sized,
fn from_stdin(sop: &'s S) -> Result<Self, Error>where
Self: Sized,
Loads objects like certs and keys from stdin.
Source§impl Save for Keys<'_>
impl Save for Keys<'_>
Auto Trait Implementations§
impl<'s> Freeze for Keys<'s>
impl<'s> !RefUnwindSafe for Keys<'s>
impl<'s> Send for Keys<'s>
impl<'s> Sync for Keys<'s>
impl<'s> Unpin for Keys<'s>
impl<'s> !UnwindSafe for Keys<'s>
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