pub struct BitString<T = usize>{
pub size: Size<T>,
pub constants: Vec<(String, u64)>,
}Fields§
§size: Size<T>§constants: Vec<(String, u64)>Trait Implementations§
Source§impl<T> PartialOrd for BitString<T>
impl<T> PartialOrd for BitString<T>
Source§impl<T> TryFrom<&mut Peekable<T>> for BitString<<Unresolved as ResolveState>::SizeType>
impl<T> TryFrom<&mut Peekable<T>> for BitString<<Unresolved as ResolveState>::SizeType>
Source§fn try_from(
iter: &mut Peekable<T>,
) -> Result<BitString<<Unresolved as ResolveState>::SizeType>, <BitString<<Unresolved as ResolveState>::SizeType> as TryFrom<&mut Peekable<T>>>::Error>
fn try_from( iter: &mut Peekable<T>, ) -> Result<BitString<<Unresolved as ResolveState>::SizeType>, <BitString<<Unresolved as ResolveState>::SizeType> as TryFrom<&mut Peekable<T>>>::Error>
Performs the conversion.
impl<T> Eq for BitString<T>
impl<T> StructuralPartialEq for BitString<T>
Auto Trait Implementations§
impl<T> Freeze for BitString<T>where
T: Freeze,
impl<T> RefUnwindSafe for BitString<T>where
T: RefUnwindSafe,
impl<T> Send for BitString<T>where
T: Send,
impl<T> Sync for BitString<T>where
T: Sync,
impl<T> Unpin for BitString<T>where
T: Unpin,
impl<T> UnwindSafe for BitString<T>where
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.