Struct AssemblyRefProcessorRaw
pub struct AssemblyRefProcessorRaw {
pub rid: u32,
pub token: Token,
pub offset: usize,
pub processor: u32,
pub assembly_ref: u32,
}Expand description
The AssemblyRefProcessor table specifies which processors a referenced assembly is targeted for, TableId = 0x24
Fields§
§rid: u32RowID
token: TokenToken
offset: usizeOffset
processor: u32a 4-byte constant
assembly_ref: u32an index into the AssemblyRef table
Implementations§
§impl AssemblyRefProcessorRaw
impl AssemblyRefProcessorRaw
pub fn to_owned(&self, refs: &AssemblyRefMap) -> Result<AssemblyRefProcessorRc>
pub fn to_owned(&self, refs: &AssemblyRefMap) -> Result<AssemblyRefProcessorRc>
Trait Implementations§
§impl Clone for AssemblyRefProcessorRaw
impl Clone for AssemblyRefProcessorRaw
§fn clone(&self) -> AssemblyRefProcessorRaw
fn clone(&self) -> AssemblyRefProcessorRaw
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 more§impl Debug for AssemblyRefProcessorRaw
impl Debug for AssemblyRefProcessorRaw
§impl<'a> RowDefinition<'a> for AssemblyRefProcessorRaw
impl<'a> RowDefinition<'a> for AssemblyRefProcessorRaw
Auto Trait Implementations§
impl Freeze for AssemblyRefProcessorRaw
impl RefUnwindSafe for AssemblyRefProcessorRaw
impl Send for AssemblyRefProcessorRaw
impl Sync for AssemblyRefProcessorRaw
impl Unpin for AssemblyRefProcessorRaw
impl UnwindSafe for AssemblyRefProcessorRaw
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more