pub struct VarAtomBase<A> {
pub id: A,
pub access: BitAccess,
}Fields§
§id: A§access: BitAccessImplementations§
Trait Implementations§
Source§impl<A: Clone> Clone for VarAtomBase<A>
impl<A: Clone> Clone for VarAtomBase<A>
Source§fn clone(&self) -> VarAtomBase<A>
fn clone(&self) -> VarAtomBase<A>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<A: Copy> Copy for VarAtomBase<A>
Source§impl<A: Debug> Debug for VarAtomBase<A>
impl<A: Debug> Debug for VarAtomBase<A>
Source§impl<'de, A> Deserialize<'de> for VarAtomBase<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for VarAtomBase<A>where
A: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<A> Display for VarAtomBase<A>
impl<A> Display for VarAtomBase<A>
impl<A: Eq> Eq for VarAtomBase<A>
Source§impl<A: Hash> Hash for VarAtomBase<A>
impl<A: Hash> Hash for VarAtomBase<A>
Source§impl<A: Ord> Ord for VarAtomBase<A>
impl<A: Ord> Ord for VarAtomBase<A>
Source§fn cmp(&self, other: &VarAtomBase<A>) -> Ordering
fn cmp(&self, other: &VarAtomBase<A>) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<A: PartialEq> PartialEq for VarAtomBase<A>
impl<A: PartialEq> PartialEq for VarAtomBase<A>
Source§impl<A: PartialOrd> PartialOrd for VarAtomBase<A>
impl<A: PartialOrd> PartialOrd for VarAtomBase<A>
Source§impl<A> Serialize for VarAtomBase<A>where
A: Serialize,
impl<A> Serialize for VarAtomBase<A>where
A: Serialize,
impl<A: PartialEq> StructuralPartialEq for VarAtomBase<A>
Auto Trait Implementations§
impl<A> Freeze for VarAtomBase<A>where
A: Freeze,
impl<A> RefUnwindSafe for VarAtomBase<A>where
A: RefUnwindSafe,
impl<A> Send for VarAtomBase<A>where
A: Send,
impl<A> Sync for VarAtomBase<A>where
A: Sync,
impl<A> Unpin for VarAtomBase<A>where
A: Unpin,
impl<A> UnsafeUnpin for VarAtomBase<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for VarAtomBase<A>where
A: 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