pub struct RegDataSegment {
pub mode: RegDataMode,
pub bytes: Vec<u8>,
}Expand description
A data segment in lowered register IR.
Fields§
§mode: RegDataMode§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for RegDataSegment
impl Clone for RegDataSegment
Source§fn clone(&self) -> RegDataSegment
fn clone(&self) -> RegDataSegment
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 moreSource§impl Debug for RegDataSegment
impl Debug for RegDataSegment
impl Eq for RegDataSegment
Source§impl PartialEq for RegDataSegment
impl PartialEq for RegDataSegment
impl StructuralPartialEq for RegDataSegment
Auto Trait Implementations§
impl Freeze for RegDataSegment
impl RefUnwindSafe for RegDataSegment
impl Send for RegDataSegment
impl Sync for RegDataSegment
impl Unpin for RegDataSegment
impl UnsafeUnpin for RegDataSegment
impl UnwindSafe for RegDataSegment
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