pub struct SemanticSignal<A> {
pub address: A,
pub width: usize,
}Fields§
§address: A§width: usizeTrait Implementations§
Source§impl<A: Clone> Clone for SemanticSignal<A>
impl<A: Clone> Clone for SemanticSignal<A>
Source§fn clone(&self) -> SemanticSignal<A>
fn clone(&self) -> SemanticSignal<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 SemanticSignal<A>
Source§impl<A: Debug> Debug for SemanticSignal<A>
impl<A: Debug> Debug for SemanticSignal<A>
Source§impl<'de, A> Deserialize<'de> for SemanticSignal<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for SemanticSignal<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
impl<A: Eq> Eq for SemanticSignal<A>
Source§impl<A: Hash> Hash for SemanticSignal<A>
impl<A: Hash> Hash for SemanticSignal<A>
Source§impl<A: PartialEq> PartialEq for SemanticSignal<A>
impl<A: PartialEq> PartialEq for SemanticSignal<A>
Source§impl<A> Serialize for SemanticSignal<A>where
A: Serialize,
impl<A> Serialize for SemanticSignal<A>where
A: Serialize,
impl<A: PartialEq> StructuralPartialEq for SemanticSignal<A>
Auto Trait Implementations§
impl<A> Freeze for SemanticSignal<A>where
A: Freeze,
impl<A> RefUnwindSafe for SemanticSignal<A>where
A: RefUnwindSafe,
impl<A> Send for SemanticSignal<A>where
A: Send,
impl<A> Sync for SemanticSignal<A>where
A: Sync,
impl<A> Unpin for SemanticSignal<A>where
A: Unpin,
impl<A> UnsafeUnpin for SemanticSignal<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for SemanticSignal<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