pub struct Curve448 { /* private fields */ }Methods from Deref<Target = ObjectIdentifier>§
Sourcepub fn components(&self) -> &Vec<u64>
pub fn components(&self) -> &Vec<u64>
Borrows its internal vector of components.
§Examples
use yasna::models::ObjectIdentifier;
let pkcs1 = ObjectIdentifier::from_slice(&
[1, 2, 840, 113549, 1, 1]);
let components : &Vec<u64> = pkcs1.components();Trait Implementations§
Source§impl Deref for Curve448
impl Deref for Curve448
Source§type Target = ObjectIdentifier
type Target = ObjectIdentifier
The resulting type after dereferencing.
Source§fn deref(&self) -> &ObjectIdentifier
fn deref(&self) -> &ObjectIdentifier
Dereferences the value.
impl LazyStatic for Curve448
Auto Trait Implementations§
impl Freeze for Curve448
impl RefUnwindSafe for Curve448
impl Send for Curve448
impl Sync for Curve448
impl Unpin for Curve448
impl UnsafeUnpin for Curve448
impl UnwindSafe for Curve448
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