Struct security_framework::base::Error [−][src]
pub struct Error(_);
Expand description
A Security Framework error.
Implementations
impl Error
[src]
impl Error
[src]Trait Implementations
impl Error for Error
[src]
impl Error for Error
[src]fn description(&self) -> &str
[src]
fn description(&self) -> &str
[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]The lower-level source of this error, if any. Read more
impl<S> From<Error> for HandshakeError<S>
[src]
impl<S> From<Error> for HandshakeError<S>
[src]fn from(err: Error) -> HandshakeError<S>
[src]
fn from(err: Error) -> HandshakeError<S>
[src]Performs the conversion.
impl<S> From<Error> for ClientHandshakeError<S>
[src]
impl<S> From<Error> for ClientHandshakeError<S>
[src]fn from(err: Error) -> ClientHandshakeError<S>
[src]
fn from(err: Error) -> ClientHandshakeError<S>
[src]Performs the conversion.
impl Copy for Error
[src]
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more