pub struct CuLogOrigin {
pub culistid: Option<u64>,
pub component_id: Option<u32>,
pub task_index: Option<u32>,
}Expand description
Runtime origin metadata attached to a structured log entry when available.
Fields§
§culistid: Option<u64>CopperList id of the callback that emitted this log line.
component_id: Option<u32>Runtime component id recorded for the active callback.
task_index: Option<u32>Current task index when the emitting callback belongs to a task.
Trait Implementations§
Source§impl<'__de, __Context> BorrowDecode<'__de, __Context> for CuLogOrigin
impl<'__de, __Context> BorrowDecode<'__de, __Context> for CuLogOrigin
Source§fn borrow_decode<__D>(decoder: &mut __D) -> Result<CuLogOrigin, DecodeError>where
__D: BorrowDecoder<'__de, Context = __Context>,
fn borrow_decode<__D>(decoder: &mut __D) -> Result<CuLogOrigin, DecodeError>where
__D: BorrowDecoder<'__de, Context = __Context>,
Attempt to decode this type with the given BorrowDecode.
Source§impl Clone for CuLogOrigin
impl Clone for CuLogOrigin
Source§fn clone(&self) -> CuLogOrigin
fn clone(&self) -> CuLogOrigin
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 CuLogOrigin
impl Debug for CuLogOrigin
Source§impl<__Context> Decode<__Context> for CuLogOrigin
impl<__Context> Decode<__Context> for CuLogOrigin
Source§fn decode<__D>(decoder: &mut __D) -> Result<CuLogOrigin, DecodeError>where
__D: Decoder<Context = __Context>,
fn decode<__D>(decoder: &mut __D) -> Result<CuLogOrigin, DecodeError>where
__D: Decoder<Context = __Context>,
Attempt to decode this type with the given Decode.
Source§impl Default for CuLogOrigin
impl Default for CuLogOrigin
Source§fn default() -> CuLogOrigin
fn default() -> CuLogOrigin
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CuLogOrigin
impl<'de> Deserialize<'de> for CuLogOrigin
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CuLogOrigin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CuLogOrigin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encode for CuLogOrigin
impl Encode for CuLogOrigin
Source§impl PartialEq for CuLogOrigin
impl PartialEq for CuLogOrigin
Source§fn eq(&self, other: &CuLogOrigin) -> bool
fn eq(&self, other: &CuLogOrigin) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CuLogOrigin
impl Serialize for CuLogOrigin
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for CuLogOrigin
impl Eq for CuLogOrigin
impl StructuralPartialEq for CuLogOrigin
Auto Trait Implementations§
impl Freeze for CuLogOrigin
impl RefUnwindSafe for CuLogOrigin
impl Send for CuLogOrigin
impl Sync for CuLogOrigin
impl Unpin for CuLogOrigin
impl UnsafeUnpin for CuLogOrigin
impl UnwindSafe for CuLogOrigin
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,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> ElementType for T
impl<T> ElementType for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
§impl<T> TypeData for T
impl<T> TypeData for T
§fn clone_type_data(&self) -> Box<dyn TypeData>
fn clone_type_data(&self) -> Box<dyn TypeData>
Creates a type-erased clone of this value.