pub enum SLTIndexKind {
Unpacked {
element_width: usize,
},
Packed,
}Variants§
Unpacked
An unpacked-array dimension. element_width is the packed width of
one complete array element.
Packed
A packed dimension or bit/part select.
Trait Implementations§
Source§impl Clone for SLTIndexKind
impl Clone for SLTIndexKind
Source§fn clone(&self) -> SLTIndexKind
fn clone(&self) -> SLTIndexKind
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 Copy for SLTIndexKind
Source§impl Debug for SLTIndexKind
impl Debug for SLTIndexKind
Source§impl<'de> Deserialize<'de> for SLTIndexKind
impl<'de> Deserialize<'de> for SLTIndexKind
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 Eq for SLTIndexKind
Source§impl Hash for SLTIndexKind
impl Hash for SLTIndexKind
Source§impl PartialEq for SLTIndexKind
impl PartialEq for SLTIndexKind
Source§impl Serialize for SLTIndexKind
impl Serialize for SLTIndexKind
impl StructuralPartialEq for SLTIndexKind
Auto Trait Implementations§
impl Freeze for SLTIndexKind
impl RefUnwindSafe for SLTIndexKind
impl Send for SLTIndexKind
impl Sync for SLTIndexKind
impl Unpin for SLTIndexKind
impl UnsafeUnpin for SLTIndexKind
impl UnwindSafe for SLTIndexKind
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