pub enum ChirrtlMemory {
    SMem(Identifier, Type, Option<ChirrtlMemoryReadUnderWrite>, Info),
    CMem(Identifier, Type, Info),
}Variants§
SMem(Identifier, Type, Option<ChirrtlMemoryReadUnderWrite>, Info)
CMem(Identifier, Type, Info)
Trait Implementations§
Source§impl Clone for ChirrtlMemory
 
impl Clone for ChirrtlMemory
Source§fn clone(&self) -> ChirrtlMemory
 
fn clone(&self) -> ChirrtlMemory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for ChirrtlMemory
 
impl Debug for ChirrtlMemory
Source§impl Display for ChirrtlMemory
 
impl Display for ChirrtlMemory
Source§impl Hash for ChirrtlMemory
 
impl Hash for ChirrtlMemory
Source§impl Ord for ChirrtlMemory
 
impl Ord for ChirrtlMemory
Source§fn cmp(&self, other: &ChirrtlMemory) -> Ordering
 
fn cmp(&self, other: &ChirrtlMemory) -> Ordering
1.21.0 · 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 PartialEq for ChirrtlMemory
 
impl PartialEq for ChirrtlMemory
Source§impl PartialOrd for ChirrtlMemory
 
impl PartialOrd for ChirrtlMemory
impl Eq for ChirrtlMemory
impl StructuralPartialEq for ChirrtlMemory
Auto Trait Implementations§
impl Freeze for ChirrtlMemory
impl RefUnwindSafe for ChirrtlMemory
impl Send for ChirrtlMemory
impl Sync for ChirrtlMemory
impl Unpin for ChirrtlMemory
impl UnwindSafe for ChirrtlMemory
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