pub struct SetOf<T> {
pub id: u64,
pub class: TagClass,
pub inner: Vec<T>,
}Fields§
§id: u64§class: TagClass§inner: Vec<T>Trait Implementations§
Source§impl<T: ASNTag + Sized> ASNTag for SetOf<T>
impl<T: ASNTag + Sized> ASNTag for SetOf<T>
Source§fn into_structure(self) -> StructureTag
fn into_structure(self) -> StructureTag
Encode yourself into a generic Tag format. Read more
impl<T: PartialEq> StructuralPartialEq for SetOf<T>
Auto Trait Implementations§
impl<T> Freeze for SetOf<T>
impl<T> RefUnwindSafe for SetOf<T>where
Vec<T>: RefUnwindSafe,
impl<T> Send for SetOf<T>
impl<T> Sync for SetOf<T>
impl<T> Unpin for SetOf<T>
impl<T> UnsafeUnpin for SetOf<T>where
Vec<T>: UnsafeUnpin,
impl<T> UnwindSafe for SetOf<T>where
Vec<T>: UnwindSafe,
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