pub struct organizationName { /* 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 organizationName
impl Deref for organizationName
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 organizationName
Auto Trait Implementations§
impl Freeze for organizationName
impl RefUnwindSafe for organizationName
impl Send for organizationName
impl Sync for organizationName
impl Unpin for organizationName
impl UnsafeUnpin for organizationName
impl UnwindSafe for organizationName
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