Struct gear_core::code::InstrumentedCodeAndId
source · pub struct InstrumentedCodeAndId { /* private fields */ }
Expand description
The newtype contains the instrumented code and the corresponding id (hash).
Implementations§
source§impl InstrumentedCodeAndId
impl InstrumentedCodeAndId
sourcepub fn code(&self) -> &InstrumentedCode
pub fn code(&self) -> &InstrumentedCode
Returns reference to the instrumented code.
sourcepub fn into_parts(self) -> (InstrumentedCode, CodeId)
pub fn into_parts(self) -> (InstrumentedCode, CodeId)
Consumes the instance and returns the instrumented code.
Trait Implementations§
source§impl Clone for InstrumentedCodeAndId
impl Clone for InstrumentedCodeAndId
source§fn clone(&self) -> InstrumentedCodeAndId
fn clone(&self) -> InstrumentedCodeAndId
Returns a copy 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 InstrumentedCodeAndId
impl Debug for InstrumentedCodeAndId
source§impl Decode for InstrumentedCodeAndId
impl Decode for InstrumentedCodeAndId
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<Self, Error>
Attempt to deserialise the value from input.
source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
source§impl Encode for InstrumentedCodeAndId
impl Encode for InstrumentedCodeAndId
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )
Convert self to a slice and append it to the destination.
source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl From<CodeAndId> for InstrumentedCodeAndId
impl From<CodeAndId> for InstrumentedCodeAndId
impl EncodeLike for InstrumentedCodeAndId
Auto Trait Implementations§
impl RefUnwindSafe for InstrumentedCodeAndId
impl Send for InstrumentedCodeAndId
impl Sync for InstrumentedCodeAndId
impl Unpin for InstrumentedCodeAndId
impl UnwindSafe for InstrumentedCodeAndId
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